1.打开teminal,输入git log,找到你想要版本的commit号(xxxxx)
2.新建分支 git checkout -b newBranch xxxxx(上面的commit号)
3.切换分支 git checkout newBranch
4.提交分支 git push origin newBranch
5.在新文件夹内git clone -b newBranch http://…
git获取指定的历史版本
最新推荐文章于 2024-06-05 09:08:31 发布
1.打开teminal,输入git log,找到你想要版本的commit号(xxxxx)
2.新建分支 git checkout -b newBranch xxxxx(上面的commit号)
3.切换分支 git checkout newBranch
4.提交分支 git push origin newBranch
5.在新文件夹内git clone -b newBranch http://…