📌  相关文章
📜  git branch from commit - Shell-Bash 代码示例

📅  最后修改于: 2022-03-11 14:50:28.392000             🧑  作者: Mango

代码示例2
You can create the branch via a hash:

git branch branchname 
Or by using a symbolic reference:

git branch branchname HEAD~3
To checkout the branch when creating it, use

git checkout -b branchname