错误1——【 git push -u origin master 推送到远程时报错】
错误信息
To https://gitee.com/wokaixin/uniapp_practice.git
! [rejected] master -> master (fetch first)
error: failed to push some refs to 'https://gitee.com/wokaixin/uniapp_practice.git'
略………
问题(Non-fast-forward)的出现原因在于:git仓库中已经有一部分代码,所以它不允许你直接把你的代码覆盖上去。于是你有2个选择方式:
1、强推,即利用强覆盖方式用你本地的代码替代git仓库内的内容,如果远程仓库是刚建的,没有代码,可以这样操作,尽量避免这种操作方法。
git push -f
2、先把git的东西fetch到你本地然后merge后再push
$ git fetch
$ git merge
3、在使用的时候,git merge,又出现了以下的问题
xu:QProj xiaokai$ git merge
fatal: refusing to merge unrelated histories
对于这个问题。使用git pull origin master --allow-unrelated-histories
来处理一下。
4、然后继续git merge,依然有问题
fatal: You have not concluded your merge (MERGE_HEAD exists).
Please, commit your changes before you merge.
这个就好处理了,是我们没有提交当前的变化, git add .,git commit -am “提交信息”,然后再来一次git merge,然后ok.
5、然后输入git pull,显示如下
Already up-to-date.
最后就可以执行git push origin master
将代码上传到公司的远程仓库中。
Enumerating objects: 6, done.
Counting objects: 100% (6/6), done.
Delta compression using up to 8 threads
Compressing objects: 100% (3/3), done.
Writing objects: 100% (5/5), 530 bytes | 530.00 KiB/s, done.
Total 5 (delta 0), reused 0 (delta 0), pack-reused 0
To github.com:gjwhhhh/test.git
acd0c7c..aad45be master -> master
作者:逸宸a
链接:https://www.jianshu.com/p/2c9ab8c44775
来源:简书
著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。