git 创建一个指定版本的远程分支

1、将代码克隆到本地

  

git clone https://code.aliyun.com/qykj/xxx.git

  

2、检出指定版本,一般是有问题的前一个版本

  

git checkout 08ed30d103e913f2faeccdbdbd9e099fecec939a

  

3、新建分支

git checkout -b yourbranch

  

4、提交到分支

  

git push origin yourbranch

  

原文地址:https://www.cnblogs.com/irobotzz/p/12458988.html