在远程和本地创建一个新的分支,如Dev

时间:2017-06-09 05:33:40

标签: git version-control git-branch

第1步:我将master克隆到我的本地

步骤2:然后我将另一个分支合并到本地的master上,如下所示:

git fetch origin other-branch

git merge origin/other-branch

步骤3:现在我需要在Dev之后在step 2上创建一个远程和本地的新分支。我该怎么做?

1 个答案:

答案 0 :(得分:1)

只需签出一个名为Dev的新分支,然后将分支推送到远程。

$ git checkout -b Dev      # Create lcoal 'Dev' branch and checkout to that branch  
$ git push -u origin Dev