1.github上操作: 在git上建立好仓库之后,可获取到.git地址,创建过程略,
可参考https://blog.csdn.net/cnjy_/a...

2.本地电脑上操作:
进入你要上传的文件夹,git init,此时会出现隐藏文件夹.git
image.png

接着输入命令:
// 将项目添加到仓库
git add .
// 将项目提交到仓库
git commit -m "xxx"
// 将本地文件夹与github仓库关联
git remote add origin https://github.com/wangqyuan/wqy-data-handle.git
// 关联好之后就是讲文件push到github上了
git push origin master

注意:

如果push报错:error: src refspec master does not match any
引起该错误的原因是,目录中没有文件,空目录是不能提交上去的

解决方案:创建一个readme.md文件并提交,就可以push成功了
touch README
git add README
git commit -m 'xxx'
git push origin master
可参考:https://blog.csdn.net/xl_lx/a...

如果关联错了git远程仓库地址,之后更换为正确的git地址后,
报错:fatal: remote origin already exists.

解决方案:

// 移除之前关联错的git远程仓库地址
git remote rm origin

云端的日子
66 声望1 粉丝