GIT提交的时候出现 ! [rejected] master -> master (non-fast-forward)错误

git pull origin master --allow-unrelated-histories
上面的命令是将远程库和本地库同步,接下来就好办了,只需要将提交的步骤重复一边就可以了。
git add .//添加到队列
git commit -m “提交描述” //将队列提交到本地缓存
git push origin master //将本地库文件同步到远程库

GIT提交的时候出现 ! [rejected] master -> master (non-fast-forward)错误

上一篇:04-----关于Qt下编译大文件的源码时报too many section


下一篇:Find all paths with min weights in an undirected graph