Git ブランチ管理
ほぼすべてのバージョン管理システムは、何らかの形式での分岐をサポートしています。ブランチを使用すると、開発のメインラインから分岐して、メインラインに影響を与えることなく作業を続けることができます。
Git の分岐モデルを「ニルヴァーナ機能」と呼ぶ人もいますが、まさにそれがあるからこそ、Git はバージョン管理システム ファミリから区別されます。
ブランチ作成コマンド:
git branch (branchname)
ブランチ切り替えコマンド:
git checkout (branchname)
ブランチを切り替えると、Git は作業ディレクトリの内容を最後に送信されたブランチのスナップショットで置き換えるため、複数のブランチに複数のディレクトリは必要ありません。
ブランチのマージコマンド:
git merge
同じブランチに複数回マージすることも、マージ後に直接マージされたブランチを削除することもできます。
Git ブランチ管理
ブランチをリストする
ブランチをリストする基本コマンド:
git branch
パラメーターを指定しないと、git ブランチはローカル ブランチをリストします。
$ git branch * master
この例が意味するのは、「master」というブランチがあり、このブランチが現在のブランチであるということです。
git init を実行すると、Git はデフォルトで「master」ブランチを作成します。
手動でブランチを作成し、それに切り替える場合。 git Branch (ブランチ名) を実行するだけです。
$ git branch testing $ git branch * master testing
これで、新しいブランチのテストがあることがわかります。
この方法で最後のコミット更新後に新しいブランチを作成すると、その後に更新コミットがあり、その後「テスト」ブランチに切り替えると、Git は作業ディレクトリを作成時の状態に復元します。ブランチ
次に、ブランチを切り替える方法を説明します。 git checkout (ブランチ) を使用して、変更したいブランチに切り替えます。
$ ls README $ echo 'w3cschool.cc' > test.txt $ git add . $ git commit -m 'add test.txt' [master 048598f] add test.txt 2 files changed, 1 insertion(+), 3 deletions(-) delete mode 100644 hello.php create mode 100644 test.txt $ ls README test.txt $ git checkout testing Switched to branch 'testing' $ ls README hello.php
「testing」ブランチに切り替えると、追加した新しいファイル test.txt が削除され、最初に削除されたファイル hello.php が再び表示されました。 「master」ブランチに戻すと、それらは再び表示されました。
$ git checkout master Switched to branch 'master' $ ls README test.txt
git checkout -b (ブランチ名) コマンドを使用して新しいブランチを作成し、すぐにこのブランチに切り替えてこのブランチで操作することもできます。
$ git checkout -b newtest Switched to a new branch 'newtest' $ git rm test2.txt rm 'test2.txt' $ ls README test.txt $ git commit -am 'removed test2.txt' [newtest 556f0a0] removed test2.txt 1 file changed, 1 deletion(-) delete mode 100644 test2.txt $ git checkout master Switched to branch 'master' $ ls README test.txt test2.txt
ご覧のとおり、ブランチを作成し、そのブランチのコンテキストでいくつかのファイルを削除してから、master ブランチに戻し、それらのファイルが戻ってきました。
ブランチを使用して作業を分離すると、さまざまなコンテキストで作業を行ったり、前後に切り替えたりできるようになります。
ブランチの削除
ブランチの削除コマンド:
git branch -d (branchname)
たとえば、「testing」ブランチを削除したいとします:
$ git branch * master testing $ git branch -d testing Deleted branch testing (was 85fc7e7). $ git branch * master
ブランチのマージ
ブランチに独立したコンテンツがあると、最終的にはそれをマージして元のブランチに戻す必要があります。マスターブランチ。 次のコマンドを使用して、任意のブランチを現在のブランチにマージできます:
git merge
$ git branch * master newtest $ ls README test.txt test2.txt $ git merge newtest Updating 2e082b7..556f0a0 Fast-forward test2.txt | 1 - 1 file changed, 1 deletion(-) delete mode 100644 test2.txt $ ls README test.txt
上の例では、newtest ブランチを main ブランチにマージし、test2.txt ファイルが削除されました。
マージ競合
マージは、ファイルの追加と削除という単純な操作だけではなく、Git は変更もマージします。
$ git branch * master $ cat test.txt w3cschool.cc
まず、「change_site」というブランチを作成し、そこに切り替えて、コンテンツを www.w3cschool.cc に変更します。
$ git checkout -b change_site Switched to a new branch 'change_site' $ vim test.txt $ head -1 test.txt www.w3cschool.cc $ git commit -am 'changed the site' [change_site d7e7346] changed the site 1 file changed, 1 insertion(+), 1 deletion(-)
変更したコンテンツを「change_site」ブランチに送信します。 ここで、「master」ブランチに戻ると、コンテンツが変更前の状態に復元されていることを確認でき、test.txt ファイルを再度変更します。
$ git checkout master Switched to branch 'master' $ head -1 test.txt w3cschool.cc $ vim test.txt $ cat test.txt w3cschool.cc 新增加一行 $ git diff diff --git a/test.txt b/test.txt index 704cce7..f84c2a4 100644 --- a/test.txt +++ b/test.txt @@ -1 +1,2 @@ w3cschool.cc +新增加一行 $ git commit -am '新增加一行' [master 14b4dca] 新增加一行 1 file changed, 1 insertion(+)
これで、これらの変更が「master」ブランチに記録されました。次に、「change_site」ブランチをマージします。
$ git merge change_site Auto-merging test.txt CONFLICT (content): Merge conflict in test.txt Automatic merge failed; fix conflicts and then commit the result. $ cat test.txt <<<<<<< HEAD w3cschool.cc 新增加一行 ======= www.w3cschool.cc >>>>>>> change_site
前のブランチを「master」ブランチにマージしましたが、マージ競合が発生しました。次に、それを手動で変更する必要があります。
$ vim test.txt $ cat test.txt www.w3cschool.cc 新增加一行 $ git diff diff --cc test.txt index f84c2a4,bccb7c2..0000000 --- a/test.txt +++ b/test.txt @@@ -1,2 -1,1 +1,2 @@@ - w3cschool.cc + www.w3cschool.cc +新增加一行
Git では、git add を使用して、ファイルの競合が解決されたことを Git に伝えることができます
$ git status -s UU test.txt $ git add test.txt $ git status -s M test.txt $ git commit [master 88afe0e] Merge branch 'change_site'
これで、マージ内の競合が正常に解決され、結果がコミットされました。