还是老老实实的用博客记录遇到的问题


git 到gitub中出现的问题

       一直使用git push命令出现问题。

  在网上查找的时候发现了问题出现在哪里

    应该在 git push origin master

To github.com:HUSTERLITAO/coolweather.git
 ! [rejected]        master -> master (fetch first)
error: failed to push some refs to '[email protected]:HUSTERLITAO/coolweather.git'
hint: Updates were rejected because the remote contains work that you do
hint: not have locally. This is usually caused by another repository pushing
hint: to the same ref. You may want to first integrate the remote changes
hint: (e.g., 'git pull ...') before pushing again.
hint: See the 'Note about fast-forwards' in 'git push --help' for details.

  原因:本地没有update到最新版本的项目(git上有README.md文件没下载下来)
  解决办法:
   git pull --rebase origin master






git 到gitub中出现的问题
         然后就可以上传了。

相关文章: