@xzkcz
2014-05-22T05:01:29.000000Z
字数 409
阅读 2045
查看本地是否有hotfix分支,执行git branch
;
如果没有hotfix分支,执行git fetch
;
创建新的hotfix分支,执行git checkout -b hotfix remotes/origin/hotfix
;
在hotfix分支中进行修改、提交,执行git push -u origin hotfix
,
再次提交可直接执行git push
;
git checkout hotfix
;git pull
;git branch -d hotfix
,然后再执行标准操作流程;