赞
踩
第一步,将所在分支拉取最新代码:
git fetch origin
第二步,根据tag创建新的分支:
git branch <new-branch-name> <tag-name>
例如:git branch newbranch web-11.2
web-11.2为git服务器 上已经为分支打上的标签;
newbranch为你自己想要定义的新分支名称。