其他分享
首页 > 其他分享> > git 根据历史 commitID 拉分支

git 根据历史 commitID 拉分支

作者:互联网

1. git log -g 查看已commit的信息
2. 根据commit信息找到对应的commitID
3. 执行一下命令来创建新的分支
### 1. 方法一:创建一个基于commitId的分支,但不切过去
git branch new_branch_name commitId

### 2. 方法二:创建基于commitId的分支,并切过去
git checkout -b new_branch_name commitId

标签:commitId,git,commitID,branch,new,分支
来源: https://www.cnblogs.com/gradyblog/p/16057749.html