第1步:我将master
克隆到我的本地
步骤2:然后我将另一个分支合并到本地的master上,如下所示:
git fetch origin other-branch
git merge origin/other-branch
步骤3:现在我需要在Dev
之后在step 2
上创建一个远程和本地的新分支。我该怎么做?
答案 0 :(得分:1)
只需签出一个名为Dev
的新分支,然后将分支推送到远程。
$ git checkout -b Dev # Create lcoal 'Dev' branch and checkout to that branch
$ git push -u origin Dev