git 从分支上创建一个分支

Posted 雪洗中关村

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了git 从分支上创建一个分支相关的知识,希望对你有一定的参考价值。

相关连接:

  创建于合并分支:https://www.liaoxuefeng.com/wiki/0013739516305929606dd18361248578c67b8067c8c017b000/001375840038939c291467cc7c747b1810aab2fb8863508000

  git从已有分支拉新分支:https://www.cnblogs.com/lingear/p/6062093.html

来源:https://www.cnblogs.com/jiqing9006/p/8980212.html

从分支上创建一个分支

1.先克隆一个项目

git clone

2.再转移到分支中

$ git status
位于分支 master
您的分支与上游分支 \'origin/master\' 一致。
无文件要提交,干净的工作区
$ git checkout gaodian 
分支 gaodian 设置为跟踪来自 origin 的远程分支 gaodian。
切换到一个新分支 \'gaodian\'

3.再拉取最新的代码

git pull origin gaodian

4.再创建新的分支

git checkout -b laobandianqi

这个时候,分支的代码就是基于gaodian这个分支的

5.将分支推送到线上

$ git push origin laobandianqi
Total 0 (delta 0), reused 0 (delta 0)
remote: 
remote: To create a merge request for laobandianqi, visit:
remote:   http://106.14.59.204/zhubin/store/merge_requests/new?merge_request%5Bsource_branch%5D=laobandianqi
remote: 
To http://106.14.59.204/zhubin/store.git
 * [new branch]      laobandianqi -> laobandianqi

这个时候线上就有新的分支了。

以上是关于git 从分支上创建一个分支的主要内容,如果未能解决你的问题,请参考以下文章

如何从 GitHub 上可用的代码创建分支 [重复]

git 从分支上创建一个分支

git使用

git 基于日常分支创建功能分支

GIT04_分支概述查看创建切换合并分支代码冲突如何定位解决

Git提交代码到主分区