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>
。