5.2 使用git在本地创建一个相同的项目
1 | $ makdir ~/hello-world //创建一个项目hello-world |
2 | $ cd ~/hello-world //打开这个项目 |
3 | $ git init //初始化 |
4 | $ touch README |
5 | $ git add README //更新README文件 |
6 | $ git commit -m 'first commit'//提交更新,并注释信息“first commit” |
7 | $ git remote add origin git@github.com:defnngj/hello-world.git //连接远程github项目 |
8 | $ git push --force -u origin master //将本地项目更新到github项目上去 |
现在查看github上面的hello world 项目,是不是发现已经将本地中的README文件更新上来了。 :) 恭喜!
5.3 可能出现的问题
5.3.1 问题一
执行下面语句报错
1 | git remote add origin git@github.com:defnngj/hello-world.git |
错误提示:fatal: remote origin alreadyexists.
解决办法:
1 | git remote rm origin |
然后在执行:
1 | $ git remote add origin git@github.com:defnngj/hello-world.git |
5.3.2 问题二
执行下面语句报错
1 | git push origin master |
错误提示:error:failed to push som refs to.......
解决办法:
1 | $ git pull origin master //先把远程服务器github上面的文件拉先来,再push 上去。 |