GitHub创建新分支并且合并分支

基本语法可以参考

 

1、首先在本地创建分支

命令如下:

git branch [branch name]

 如

git branch city-router

 2、切换到新分支

命令如下:

git checkout [branch name]

 如

git checkout city-router

创建分支的同时切换到该分支上,命令如下:

git checkout -b [branch name]

 3、在city-router分支上编写代码

4、将新分支push到GitHub上

命令如下:

git push origin [branch name]

git push origin city-router 

 5、切换到主分支

git checkout master

 6、将分支合并到主分支

命令如下:

git merge [branch name]

 如

git merge city-router 

7、提交主分支

git push

你可能感兴趣的:(Git)