Git错误:无法推送一些引用

时间:2012-07-23 18:12:27

标签: git

我认为在进入分支之前我做了'git pull',现在当我做'git branch'时它显示了这个:

* (no branch)
  master

如何将'no branch'移动到'master'然后我可以'git push'?

1 个答案:

答案 0 :(得分:4)

在分支机构之间移动:

git checkout <branch_name>

要推送分支的提交而不在,可以在push命令后指定更多参数:

git push <remote> <branch_name>

这将推送跟踪名为branch_name的远程分支的本地分支。