- バックアップ一覧
- 差分 を表示
- 現在との差分 を表示
- ソース を表示
- Git/git rebase/コンフリクト時の対応 へ行く。
- 1 (2012-04-25 (水) 19:56:01)
- 2 (2012-04-25 (水) 20:05:32)
git rebase
コンフリクトの解消
コンフリクトするまで
git checkout master git rebase branch1.0 ... Auto-merging foo.txt CONFLICT (content): Merge conflict in foo.txt ...
マスターに戻ってブランチをrebaseしようとしたが、foo.txtがコンフリクトした。
コンフリクトの解消
vim foo.txt (エディタでコンフリクトを修正) git add foo.txt git rebase --continue