1.git checkout master //切换到master分支
2.git pull //切换到master下拉,保证代码是最新的
3.git flow bugfix start fix_style //开辟一个bugfix分支
4.git add . //将代码添加到bugfix分支里面
5.git commit -m "解决样式问题" //将代码添加到bugfix分支里面
6.git checkout develop //切换到develop上面
7.git merge bugfix/fix_style //之后利用git merge 合并代码(此处不会删除分支)
8.git push //先提交到develop上面
9.git checkout bugfix/fix_style //切换到bugfix/fix_style
10.git flow bugfix publish fix_style //直接publish到远程(会给你一个地址,打开地址直接在页面中发送merage request)
11.git checkout develop //切回到develop分支
12.git branch -D bugfix/fix_style //删除bugfix/fix_style分支
网友评论