博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
git从已有分支拉新分支开发
阅读量:4920 次
发布时间:2019-06-11

本文共 732 字,大约阅读时间需要 2 分钟。

 

开发过程中经常用到从master分支copy一个开发分支,下面我们就用命令行完成这个操作:

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

 

 

感谢:https://www.cnblogs.com/lingear/p/6062093.html

转载于:https://www.cnblogs.com/beixiaoyi/p/9894388.html

你可能感兴趣的文章
将16进制的颜色转为rgb颜色
查看>>
POJ 2182 Lost Cows (树状数组 && 二分查找)
查看>>
Matlab中界面和注释---中英文切换问题
查看>>
主板维修技术
查看>>
PHP实现四种基本排序算法
查看>>
企业级应用,如何实现服务化四(基础环境准备)
查看>>
Code::Blocks
查看>>
CBitmap,HBitmap,Bitmap区别及联系
查看>>
debian 系统备份
查看>>
netsh
查看>>
LabView 快捷键
查看>>
给自定义控件添加属性
查看>>
分层测试_经验分享
查看>>
Kendo UI - Class 基类定义
查看>>
算法导论Ch4
查看>>
jmeter的使用---用户变量
查看>>
三层的中间层,
查看>>
1. EasyUI 学习总结(一)——对话框dialog
查看>>
Java play freamwork 新闻通知的定时发送
查看>>
iOS app 的 ASLR
查看>>