首頁 > 軟體

Git的分支管理

2020-06-16 17:30:03

Git分支管理簡介
幾乎每一種版本控制系統都以某種形式支援分支。使用分支意味著你可以從開發主線上分離開來,然後在不影響主線的同時繼續工作。

有人把 Git 的分支模型稱為"必殺技特性",而正是因為它,將 Git 從版本控制系統家族裡區分出來。

建立分支命令:

git branch (branchname)

切換分支命令:

git checkout (branchname)

當你切換分支的時候,Git 會用該分支的最後提交的快照替換你的工作目錄的內容, 所以多個分支不需要多個目錄。

合併分支命令:

git merge

你可以多次合併到統一分支, 也可以選擇在合併之後直接刪除被併入的分支。

一.列出分支
列出分支基本命令:

git branch

沒有引數時,git branch 會列出你在原生的分支。

$ git branch* master

此例的意思就是,我們有一個叫做"master"的分支,並且該分支是當前分支。

當你執行 git init 的時候,預設情況下 Git 就會為你建立"master"分支。

如果我們要手動建立一個分支,並切換過去。執行 git branch (branchname) 即可。

$ git branch testing

$ git branch* master

  testing

現在我們可以看到,有了一個新分支 testing。

當你以此方式在上次提交更新之後建立了新分支,如果後來又有更新提交, 然後又切換到了"testing"分支,Git 將還原你的工作目錄到你建立分支時候的樣子

接下來我們將演示如何切換分支,我們用 git checkout (branch) 切換到我們要修改的分支。

$ ls

README

$ echo 'linuxidc.com' > 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 testingSwitched to branch 'testing'

$ ls

README hello.php

當我們切換到"testing"分支的時候,我們新增的新檔案test.txt被移除了, 原來被刪除的檔案hello.php檔案又出現了。切換回"master"分支的時候,它們有重新出現了。

$ git checkout masterSwitched to branch 'master'

$ ls

README test.txt

我們也可以使用 git checkout -b (branchname) 命令來建立新分支並立即切換到該分支下,從而在該分支中操作。

$ git checkout -b newtestSwitched 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 masterSwitched to branch 'master'

$ ls

README test.txt test2.txt

如你所見,我們建立了一個分支,在該分支的上下文中移除了一些檔案,然後切換回我們的主分支,那些檔案又回來了。

使用分支將工作切分開來,從而讓我們能夠在不同上下文中做事,並來回切換。

二.刪除分支
刪除分支命令:

git branch -d (branchname)

例如我們要刪除"testing"分支:

$ git branch* master

  testing

$ git branch -d testingDeleted branch testing (was 85fc7e7).

$ git branch* master

三.分支合併
一旦某分支有了獨立內容,你終究會希望將它合併回到你的主分支。 你可以使用以下命令將任何分支合併到當前分支中去:

git merge

$ git branch* master

  newtest

$ ls

README test.txt test2.txt

$ git merge newtestUpdating 2e082b7..556f0a0Fast-forward

 test2.txt | 1 -

 1 file changed, 1 deletion(-)

 delete mode 100644 test2.txt

$ ls

README test.txt

以上範例中我們將 newtest 分支合併到主分支去,test2.txt 檔案被刪除。

四.合併衝突
合併並不僅僅是簡單的檔案新增、移除的操作,Git 也會合併修改。

$ git branch* master

$ cat test.txt

linuxidc.com

首先,我們建立一個叫做"change_site"的分支,切換過去,我們將內容改為 www.linuxidc.com 。

$ git checkout -b change_siteSwitched to a new branch 'change_site'

$ vim test.txt

$ head -1 test.txt

www.linuxidc.com

$ 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 masterSwitched to branch 'master'

$ head -1 test.txt

linuxidc.com

$ vim test.txt

$ cat test.txt

linuxidc.com新增加一行

$ git diff

diff --git a/test.txt b/test.txt

index 704cce7..f84c2a4 100644--- a/test.txt+++ b/test.txt@@ -1 +1,2 @@

 linuxidc.com+新增加一行

$ git commit -am '新增加一行'[master 14b4dca] 新增加一行

 1 file changed, 1 insertion(+)

 

現在這些改變已經記錄到我的 "master" 分支了。接下來我們將 "change_site" 分支合併過來。

 $ git merge change_siteAuto-merging test.txt

CONFLICT (content): Merge conflict in test.txtAutomatic merge failed; fix conflicts and then commit the result.

$ cat test.txt <<<<<<< HEAD

linuxidc.com新增加一行=======

www.linuxidc.com>>>>>>> change_site

我們將前一個分支合併到 "master" 分支,一個合併衝突就出現了,接下來我們需要手動去修改它。

$ vim test.txt

$ cat test.txt

www.linuxidc.com新增加一行

$ git diff

diff --cc test.txt

index f84c2a4,bccb7c2..0000000--- a/test.txt+++ b/test.txt@@@ -1,2 -1,1 +1,2 @@@- linuxidc.com+ www.linuxidc.com

 +新增加一行

在 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'

現在我們成功解決了合併中的衝突,並提交了結果。

Git 教學系列文章: 

GitHub 使用教學圖文詳解  http://www.linuxidc.com/Linux/2014-09/106230.htm 

Git 標籤管理詳解 http://www.linuxidc.com/Linux/2014-09/106231.htm 

Git 分支管理詳解 http://www.linuxidc.com/Linux/2014-09/106232.htm 

Git 遠端倉庫詳解 http://www.linuxidc.com/Linux/2014-09/106233.htm 

Git 本地倉庫(Repository)詳解 http://www.linuxidc.com/Linux/2014-09/106234.htm 

Git 伺服器搭建與用戶端安裝  http://www.linuxidc.com/Linux/2014-05/101830.htm 

Git 概述 http://www.linuxidc.com/Linux/2014-05/101829.htm 

分享實用的GitHub 使用教學 http://www.linuxidc.com/Linux/2014-04/100556.htm 

Git從入門到學會 http://www.linuxidc.com/Linux/2016-10/135872.htm


IT145.com E-mail:sddin#qq.com