我已按照以下步骤操作:
现在我想把它推到github但是在新的分支“newBranch”上。我该怎么做?
答案 0 :(得分:0)
首先,您必须提交更改:
git status
git add -- <files>
git commit -m "Commit message"
然后你必须git push
:
git push -u origin newBranch
-u
会为您的新分支设置上游,以便您以后可以git push
,git pull
等,而无需说明去往何处。
答案 1 :(得分:0)
git push origin newBranch
会做到这一点。任何时候你需要推送代码,它是git push [name of remote repository] [name of branch]
。在这种情况下,您的遥控器的名称是origin,您的分支是newBranch