上传本地代码到github
2017-09-07 本文已影响0人
Bonucci
第一步:建立git仓库
cd到你的本地项目根目录下,执行git命令
git init
第二步:将项目的所有文件添加到仓库中
git add .//add 跟.之间有空格
第三步:将add的文件commit到仓库
git commit -m "注释"
第四步:将本地的仓库关联到github上
git remote add origin https://github.com/PaulPogba/PhotoAndPop-up-Windows.git
此时可能会出现一个错误
git 添加远程github仓库的时候提示错误:
fatal: remote origin already exists.
1、先删除远程 Git 仓库
git remote rm origin
2、再添加远程 Git 仓库
git remote add origin https://github.com/PaulPogba/PhotoAndPop-up-Windows.git
如果执行 git remote rm origin 报错的话,我们可以手动修改gitconfig文件的内容
vi .git/config
20151222174818358.jpeg
把 [remote “origin”] 那一行删掉就好了。
第五步:上传github之前,要先pull一下,:
git pull origin master
第六步,上传代码到github远程仓库
git push -u origin master
中间可能会让你输入Username和Password,你只要输入github的账号和密码就行