2

我想我在进入分支之前做了“git pull”,现在当我做“git branch”时,它会显示:

* (no branch)
  master

我怎样才能将 'no branch' 移动到 'master' 这样我就可以做 'g​​it push' 了?

4

1 回答 1

4

在分支之间移动:

git checkout <branch_name>

要在不进入分支的情况下推送分支的提交您可以在命令后指定更多参数push

git push <remote> <branch_name>

这将推送跟踪远程分支的本地分支,称为branch_name.

于 2012-07-23T20:48:36.297 回答