現在起こっていることは、以前にマージしようとした特定のファイルのセットがあり、それらがマージの競合を引き起こしたことです。理想的には、マージの競合が発生した場合、手動で解決し、を使用して変更をコミットする必要がありgit add file.name && git commit -m "removed merge conflicts"
ます。これで、別のユーザーがリポジトリの問題のファイルを更新し、変更を共通のアップストリームリポジトリにプッシュしました。
(おそらく)最後のコミットからのマージの競合が解決されなかったため、ファイルが正しくマージされず、ファイルのU
(unmerged
)フラグが発生します。したがって、を実行するとgit pull
、正しく解決されていないバージョンのファイルが存在するため、gitがエラーをスローします。
これを解決するには、を実行する前に、問題のマージの競合を解決し、変更を追加してコミットする必要がありますgit pull
。
問題の再現と解決の例:
# Note: commands below in format `CUURENT_WORKING_DIRECTORY $ command params`
Desktop $ cd test
まず、リポジトリ構造を作成しましょう
test $ mkdir repo && cd repo && git init && touch file && git add file && git commit -m "msg"
repo $ cd .. && git clone repo repo_clone && cd repo_clone
repo_clone $ echo "text2" >> file && git add file && git commit -m "msg" && cd ../repo
repo $ echo "text1" >> file && git add file && git commit -m "msg" && cd ../repo_clone
これでrepo_cloneになりました。を実行するとgit pull
、競合が発生します
repo_clone $ git pull origin master
remote: Counting objects: 5, done.
remote: Total 3 (delta 0), reused 0 (delta 0)
Unpacking objects: 100% (3/3), done.
From /home/anshulgoyal/Desktop/test/test/repo
* branch master -> FETCH_HEAD
24d5b2e..1a1aa70 master -> origin/master
Auto-merging file
CONFLICT (content): Merge conflict in file
Automatic merge failed; fix conflicts and then commit the result.
クローン内の競合を無視し、元のリポジトリでさらにコミットを行うと、
repo_clone $ cd ../repo
repo $ echo "text1" >> file && git add file && git commit -m "msg" && cd ../repo_clone
そして、私たちはgit pull
、私たちのget
repo_clone $ git pull
U file
Pull is not possible because you have unmerged files.
Please, fix them up in the work tree, and then use 'git add/rm <file>'
as appropriate to mark resolution, or use 'git commit -a'.
ことに注意してくださいfile
今マージされていない状態であり、我々がしなければgit status
、我々は明らかに同じを見ることができます:
repo_clone $ git status
On branch master
Your branch and 'origin/master' have diverged,
and have 1 and 1 different commit each, respectively.
(use "git pull" to merge the remote branch into yours)
You have unmerged paths.
(fix conflicts and run "git commit")
Unmerged paths:
(use "git add <file>..." to mark resolution)
both modified: file
したがって、これを解決するには、最初に無視したマージの競合を解決する必要があります
repo_clone $ vi file
そしてその内容を
text2
text1
text1
それを追加して変更をコミットします
repo_clone $ git add file && git commit -m "resolved merge conflicts"
[master 39c3ba1] resolved merge conflicts