我有一个名为refactor
的分支,使用Gitlab Web界面将其合并到master
中。这也删除了源分支。
回到shell中,我注意到git仍然认为它在refactor
分支(不再存在)上。我尝试将分支切换回master
,但是我在本地做了一些进一步的工作,导致未保存的更改。我找到了一个新的stash
命令(对我来说),所以尝试过:
$ git stash
warning: LF will be replaced by CRLF in Prec/EnquiryForms/wizard/manifest.xml
The file will have its original line endings in your working directory.
Saved working directory and index state WIP on refactor: 3b174f5 Updated package
然后我可以切换到master
$ git checkout master
Switched to branch 'master'
Your branch is up to date with 'origin/master'.
我试图套用藏匿处,但发生冲突
$ git stash apply
Auto-merging Prec/Scripts/_wizard/manifest.xml
CONFLICT (content): Merge conflict in Prec/Scripts/_wizard/manifest.xml
Auto-merging Prec/EnquiryForms/wizard/manifest.xml
CONFLICT (content): Merge conflict in Prec/EnquiryForms/wizard/manifest.xml
Auto-merging Prec/Prec.Manifest.xml
CONFLICT (content): Merge conflict in Prec/Prec.Manifest.xml
所以我还是尝试提交,但现在卡住了。
$ git status
On branch master
Your branch is up to date with 'origin/master'.
Unmerged paths:
(use "git reset HEAD <file>..." to unstage)
(use "git add <file>..." to mark resolution)
both modified: Prec/Prec.Manifest.xml
both modified: Prec/EnquiryForms/wizard/manifest.xml
both modified: Prec/Scripts/_wizard/manifest.xml
Untracked files:
(use "git add <file>..." to include in what will be committed)
Prec/Lookups/CLTYPES/
no changes added to commit (use "git add" and/or "git commit -a")
$ git stash list
stash@{0}: WIP on refactor: 3b174f5 Updated package
$ git add .
$ git commit -m "some changes"
[master d5892a6] some changes
4 files changed, 112 insertions(+)
create mode 100644 Prec/Lookups/CLTYPES/manifest.xml
$ git push origin master
To gitlab.example.com:repo/new.git
! [rejected] master -> master (fetch first)
error: failed to push some refs to 'git@gitlab.example.com:repo/new.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.
至此,我已经完成了git pull
$ git pull
remote: Enumerating objects: 1, done.
remote: Counting objects: 100% (1/1), done.
remote: Total 1 (delta 0), reused 1 (delta 0)
Unpacking objects: 100% (1/1), done.
From gitlab.example.com:repo/new-coi
c521196..bce53c1 master -> origin/master
Auto-merging Prec/Scripts/_wizard/manifest.xml
CONFLICT (content): Merge conflict in Prec/Scripts/_wizard/manifest.xml
Auto-merging Prec/EnquiryForms/wizard/manifest.xml
CONFLICT (content): Merge conflict in Prec/EnquiryForms/wizard/manifest.xml
Auto-merging Prec/Prec.Manifest.xml
CONFLICT (content): Merge conflict in Prec/Prec.Manifest.xml
Automatic merge failed; fix conflicts and then commit the result.
我现在处于以下状态
$ git status
On branch master
Your branch and 'origin/master' have diverged,
and have 1 and 5 different commits each, respectively.
(use "git pull" to merge the remote branch into yours)
我不太了解这里发生了什么或如何解决。我基本上希望合并分支之后所做的更改被提交到master分支中。 Git需要与我的本地目录保持最新。
答案 0 :(得分:0)
从母版中撤出后,您的更改与某些已推送到母版中的更改(在您进行更改时)发生冲突。 Git本身无法合并更改,希望您解决冲突然后再次推送。
以下是解决冲突,然后再次推送到远程存储库的步骤:Resolve Merge Conflicts using command line