マスターをステージ ブランチにリベースしている最中です。
git checkout stage
git rebase master
ある時点で、2 つのファイルを削除し、GIT に従って 2 つのファイルを変更しました。
warning: too many files, skipping inexact rename detection
CONFLICT (delete/modify): test-recommendation-result.php deleted in HEAD and modified in [Bug] Fix test recommender. Version [Bug] Fix test recommender of test-recommendation-result.php left in tree.
CONFLICT (delete/modify): test-recommendation.php deleted in HEAD and modified in [Bug] Fix test recommender. Version [Bug] Fix test recommender of test-recommendation.php left in tree.
Failed to merge in the changes.
Patch failed at 0015.
「ええgit、どうぞそれらのファイルを削除してください」と言いたいので....
git rm test-recommendation-result.php
git rm test-recommendation.php
git rebase --continue
ギットは次のように述べています。
Applying [Bug] Fix test recommender
No changes - did you forget to use 'git add', Stupid?
When you have resolved this problem run "git rebase --continue".
If you would prefer to skip this patch, instead run "git rebase --skip".
To restore the original branch and stop rebasing run "git rebase --abort".
私は「私を「ばか」と呼ぶな。
私たちは今、膠着状態にあります。誰が正しいのか、どうすればこれを修正できますか?