git/github学习

问题1:在执行

$ git remote addorigin [email protected]:defnngj/hello-world.git

错误提示:fatal: remote origin already exists.

解决办法:

$ git remote rm origin

然后在执行:$ git remote add origin [email protected]:defnngj/hello-world.git 就不会报错误了

问题2: 在执行

$ git push origin master

错误提示:error:failed to push som refs to.......

解决办法:

$ git pull origin master // 先把远程服务器github上面的文件拉下来,再push 上去。

你可能感兴趣的:(git/github学习)