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

git从远端切出新分支进行开发

时间:2017-07-12 18:47:53      阅读:358      评论:0      收藏:0      [点我收藏+]

标签:ast   流程   out   form   ack   his   current   check   pull   

开发时从master分支切出一个新的开发分支,其主要操作流程如下:

1. 切换到被copy的分支(master),并且从远端拉取最新版本

$git checkout master

$git pull

2. 从当前分支拉copy开发分支

$git checkout -b dev

Switched to a new branch ‘dev‘

3. 把新建的分支push到远端
$git push origin dev

4. 拉取远端分支
$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

技术分享

经过验证,当前的分支并没有和本地分支关联,根据提示进行下一步:
5. 关联

$git branch --set-upstream-to=origin/dev
6. 再次拉取 验证

$git pull

git从远端切出新分支进行开发

标签:ast   流程   out   form   ack   his   current   check   pull   

原文地址:http://www.cnblogs.com/lxk2010012997/p/7156804.html

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