标签:项目 git push inf load ase master 忽略 博客 fetch
下午新建一个项目,准备push到git上面,结果不是很懂git的我,忽略了当本地与repo上面的文件如果不一致,则拒绝push。
看到一个博客里的问题和我的一毛一样:
主要原因就是因为repo上面的比如markdown文件不在本地。
通过如下命令进行代码合并【注:pull=fetch+merge]
git pull --rebase origin master
rebase很重要,
然后再次执行 git push -u origin master
搞定。
标签:项目 git push inf load ase master 忽略 博客 fetch
原文地址:https://www.cnblogs.com/poplarforest/p/14427786.html