Git Cherry Pick 通俗易懂的用法

![直奔主题](https://upload-images.jianshu.io/upload_images/13649967-b436728a0b8fb4f1.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240) 当我们项目发布1.0版本后创建1.0分支 我们继续在master主分支上开发2.0版本 这时候1.0版本发现了BUG需要处理 此时我们一般就修改1.0分支的BUG 然后在2.0版本上原封不动的写一遍 但是Git为我们提供了更好的方式 那就是Cherry Pick ![如图我们发布了1.0后出现了BUG 我们在1.0上修复并提交了需改](https://upload-images.jianshu.io/upload_images/13649967-021a2775f919cbc0.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240) 此时我们只需要切换到主分支 ![选中我们刚刚修复BUG的1.0分支选择Cherry-Pick即可](https://upload-images.jianshu.io/upload_images/13649967-682fe564e22427dc.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240) 代码同步过来后只需要再提交一下代码即可 ![如果有冲突需要先解决后在提交](https://upload-images.jianshu.io/upload_images/13649967-76970029eca484fb.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240) ![成了,相当nice](https://upload-images.jianshu.io/upload_images/13649967-5ac627ed223852e0.gif?imageMogr2/auto-orient/strip)

你可能感兴趣的:(Git Cherry Pick 通俗易懂的用法)