我认为在进入分支之前我做了'git pull',现在当我做'git branch'时它显示了这个:
* (no branch)
master
如何将'no branch'移动到'master'然后我可以'git push'?
答案 0 :(得分:4)
在分支机构之间移动:
git checkout <branch_name>
要推送分支的提交而不在中,可以在push
命令后指定更多参数:
git push <remote> <branch_name>
这将推送跟踪名为branch_name
的远程分支的本地分支。