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://…
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://…