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

使用git创建与合并分支

时间:2018-11-23 14:20:04      阅读:154      评论:0      收藏:0      [点我收藏+]

标签:图片   技术分享   info   get   tar   https   命令操作   ash   安全   

一、概述

学会使用git命令对项目进行创建分支,并在创建结束后合并到主分支上。

问:为什么要创建分支?

答:在原来的分支上创建一个自己的分支进行开发,在开发完毕后一次性合并到原先的分支,这样既保证安全又不会影响其他人的开发。

 

二、步骤

命令操作

//查看分支:
git branch

//创建分支:
git branch <name>

//切换分支:
git checkout <name>

//创建+切换分支:
git checkout -b <name>

//合并某分支到当前分支:
git merge <name>

//删除分支:
git branch -d <name>

 

完整样例

技术分享图片

 

三、参考资料

创建与合并分支_廖雪峰

 

使用git创建与合并分支

标签:图片   技术分享   info   get   tar   https   命令操作   ash   安全   

原文地址:https://www.cnblogs.com/OctoptusLian/p/10006842.html

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