【Git】基本的なマージの手順
目次
手順
今回はmaster
にt
ブランチを取り込む
1. マージを取り込みたいブランチに移動する
master
ブランチに移動1
$ git checkout master
移動できたか確認、master
の左側に*
がついていればOK1
2
3
4$ git branch
* master
t
2. マージコマンドを実行する
master
にt
を取り込む(mergeする)1
$ git merge t
3.1 正常に完了した場合
表示される内容のサンプル
1 |
|
正常にマージできているか確認する。このような表示が出ればOK1
2
3
4$ git status
On branch master
nothing to commit, working tree clean
3.2 コンフリクトが発生した場合
表示される内容のサンプル
1 |
|
現在の状態を確認
Unmerged paths
の部分のファイルがコンフリクトを起こしているファイルです。
今回のサンプルだと、1
というファイルがコンフリクトを起こしています。1
2
3
4
5
6
7
8
9
10
11
12$ git status
On branch master
You have unmerged paths.
(fix conflicts and run "git commit")
(use "git merge --abort" to abort the merge)
Unmerged paths:
(use "git add <file>..." to mark resolution)
both modified: 1
no changes added to commit (use "git add" and/or "git commit -a")
コンフリクトを解決するには
コンフリクトを起こしているファイルを開きます。そうすると、以下のような表記の部分があるはずです。
1 |
|
この<<<<<<<<<<< HEAD
から=========
までが変更を取り込むブランチの変更
、==========
から>>>>>>>>>>> t
までが変更を取り込まれるブランチの変更
です。
変更を取り込まない
方の変更点を消して、>>>
,<<<
,===
のgitによって追加された部分をすべて消去します。
変更を取り込むブランチ
(masterブランチ)の変更を適応する場合のファイルの編集例1
2
3これはテスト文章です0
これはテスト文章です2
これはテスト文章です2
編集後、編集したファイルをgit add
してから、コミットします。
add1
$ git add 1
commit、マージのコミットの場合、git commit
のみで自動的にコミットメッセージが生成されます。git commit
を実行するとエディタが開くので(Vimの場合)ZZ
をタイプして、エディタを抜けます。1
$ git commit
開かれたエディタ画面のサンプル1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17Merge branch 't'
# Conflicts:
# 1
#
# It looks like you may be committing a merge.
# If this is not correct, please run
# git update-ref -d MERGE_HEAD
# and try again.
# Please enter the commit message for your changes. Lines starting
# with '#' will be ignored, and an empty message aborts the commit.
#
# On branch master
# All conflicts fixed but you are still merging.
#
最後に正常にマージできているかgit status
で確認して、以下のような表示になればOK1
2
3
4$ git status
On branch master
nothing to commit, working tree clean
【Git】基本的なマージの手順