web-dev-qa-db-ja.com

Gitの競合(名前変更/名前変更)

分岐をマージした後、conflict (rename/rename)file~HEADfile~my_test_branch 作成した。これらを解決するには?

ありがとう

27
spacemonkey

次のテスト設定を考えてみましょう:

git init resolving-rename-conflicts
cd resolving-rename-conflicts
echo "this file we will rename" > will-be-renamed.txt
git add -A
git commit -m "initial commit"
git checkout -b branch1
git rename will-be-renamed.txt new-name-1.txt
git commit -a -m "renamed a file on branch1"
git checkout -b branch2 master
git rename will-be-renamed.txt new-name-2.txt
git commit -a -m "renamed a file on branch2"
git checkout master

次にbranch1とbranch2をマージします

git merge --no-ff branch1
git merge --no-ff branch2

収量:

CONFLICT (rename/rename): Rename "will-be-renamed.txt"->"new-name-1.txt" in branch "HEAD" rename "will-be-renamed.txt"->"new-name-2.txt" in "branch2"
Automatic merge failed; fix conflicts and then commit the result.

git status

On branch master
You have unmerged paths.
  (fix conflicts and run "git commit")

Unmerged paths:
  (use "git add/rm <file>..." as appropriate to mark resolution)

    added by us:        new-name-1.txt
    added by them:      new-name-2.txt
    both deleted:       will-be-renamed.txt

no changes added to commit (use "git add" and/or "git commit -a")

1つのファイルを保持する場合は、new-name-2.txt

git add new-name-2.txt
git rm new-name-1.txt will-be-renamed.txt
git commit

もちろん、どちらかのファイルを選択する際に、このファイルを名前で参照するファイルに他の変更を加えることができます。また、ファイルの名前変更以外の変更、ブランチの変更前または変更後の変更がある場合は、保持しているファイルにそれらを保持するために、それらを手動で比較およびマージする必要があります。

代わりに両方のファイルを保持したい場合:

git add new-name-1.txt new-name-2.txt
git rm will-be-renamed.txt
git commit
18
javabrett