git 将master分支合到自己的开发分支
Posted 菜小鱼鱼
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了git 将master分支合到自己的开发分支相关的知识,希望对你有一定的参考价值。
背景:
一般开发自己的分支都是从最新的master上拉取,但中间master会有改动,此时需要将最新的master合到自己的分支中
命令:
1. 查看当前的分支,星号标识为当前分支;(如果查询结果有master分支,则跳到第4步)
git branch
2.查看该工程所有的分支,星号标识为当前分支
git branch -a
3.copy一个master分支(步骤1中,本地没有master分支,需要copy一个)
git branch -c master
4.切到master分支
git checkout master
5.拉取master最新代码
git pull origin master
6.切到你的分支
git checkout feature-20190813XXXX
7.将mastermeger到你的分支中
git merge master
8.将你的分支从本地push到远程
git push
以上是关于git 将master分支合到自己的开发分支的主要内容,如果未能解决你的问题,请参考以下文章