1、从某个commit拉取分支
git checkout -b <branch name> <commit_id>
例:git checkout -b trms_branch f31de460b2a
2、推送到远程
git push -u origin 分支名
例:git push -u origin trms_branch
附:确定需要取出版本的commit_id
git log
标签:origin,trms,git,push,commit,中拉取,分支 From: https://www.cnblogs.com/coco9821/p/17387480.html