码迷,mamicode.com
首页 > 其他好文 > 详细

Git中修复bug

时间:2018-11-12 13:23:08      阅读:135      评论:0      收藏:0      [点我收藏+]

标签:本地   issue   checkout   span   远程   origin   test   div   col   

问题描述:提交的远程分支中有一个小bug需要修复;

首先在本地拉取指定分支的代码:

git checkout -b test origin/远程分支
git pull

再从test分支中切一个分支:

git checkout -b issue-01

修改相应的bug,并提交到暂存区:

git add 
git commit -m ""

然后切换到test分支,并merge分支issue-01:

git merge issue-01

然后提交分支test到远程分支

 

Git中修复bug

标签:本地   issue   checkout   span   远程   origin   test   div   col   

原文地址:https://www.cnblogs.com/jayinnn/p/9945673.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!