当来一个新需求需要开发,为了不影响之前的功能的正常使用,需要从一个已有的分支拉出一个新分支做改动。这里示例为:从master分支,重新拉取出一个新的分支,名字为dev(一般命名为:项目名+年月日,这里为了方便起见,命名为dev),具体命令如下:
- 切换到已有的分支(master),从服务器拉取最新版本
$git checkout master
$git pull
- 从当前分支拉取出新的开发分支并命名dev分支
$git checkout -b dev
Switched to a new branch 'dev'
- 把新建的分支push到远端
$git push origin dev
- 从远端拉取分支到本地
$git pull
There is no tracking information for the current branch.
Please specify which branch you want to merge with.
See git-pull(1) for details.
git pull <remote> <branch>
If you wish to set tracking information for this branch you can do so with:
git branch --set-upstream-to=origin/<branch> dev
当执行pull时发现,当前的分支并没有和本地分支关联,根据提示进行关联:
$git branch --set-upstream-to=origin/dev
- 再次拉取,验证
$git pull
Already up to date.