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

📅  最后修改于: 2022-03-11 14:51:27.882000             🧑  作者: 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