首次创建仓库时使用到的命令有:
git config --global user.name "聂志祎"
git config --global user.email "邮箱账号"
git init
touch README.md
git add README.md
git commit -m "first commit"
git remote add origin 仓库地址(例子:https://gitee.com/nie-zhiyi/html.git)
git push -u origin master
将文件上传到已有仓库时遇到的问题
fatal:remote origin already exists
解决办法:
1.git remote rm origin --------解除关联的origin的远程库
2.git remote add origin 仓库地址 ---------关联自己的仓库
3.git push -u origin master ----------推送到自己的仓库
在推送到仓库时又遇到了问题:
error:failed to push some refs to "仓库地址"
解决办法:
是因为远程库与本地库不一致导致的
1.git pull --rebase origin master
2.git push -u origin master