Git 從提交建立分支
Stewart Nguyen
2022年4月22日
本文將演示如何從提交中建立新分支。
要從 SHA 提交建立分支,請使用命令 git branch <new_branch> <commit_sha>
,並將提交作為最後一個引數。
你也可以使用符號引用代替 sha
,例如 git branch <new_branch> HEAD~4
。
$ git log
commit 1e087f5309ae647d16a0e1469dfd12a7cd91e22d (HEAD -> feature/changes-to-file)
Author: Cuong Nguyen
Date: Sat Dec 18 22:01:00 2021 +0700
Make some change to file.txt
commit ab38737fe95f4959139b995b960a0173b4dd2c7e
Author: Cuong Nguyen
Date: Sat Dec 18 21:26:31 2021 +0700
Hotfix #1
$ git branch branch-from-hotfix-commit ab38737fe95f4959139b995b960a0173b4dd2c7e
$ git checkout branch-from-hotfix-commit
Switched to branch 'branch-from-hotfix-commit'
$ git log
$ git log
commit ab38737fe95f4959139b995b960a0173b4dd2c7e (HEAD -> branch-from-hotfix-commit)
Author: Cuong Nguyen
Date: Sat Dec 18 21:26:31 2021 +0700
Hotfix #1
要在建立時簽出分支,請使用 git checkout -b <new_branch> <commit_sha>
。