我有一个开发分支,我为特定功能分支。我希望能够创建/签出一个分支,进行一些提交,然后发出:
git push
或者
git push origin
推送到远程仓库。如果可能的话,任何一个命令都可以,我只是不想每次推送时都指定我的分支。我试过设置一些配置:
git config --global push.default upstream
但是当我尝试执行上述任一命令来推送时,我只会收到错误消息:
fatal: The current branch myBranch has no upstream branch. To push the current branch and set the remote as upstream, use: git push --set-upstream origin myBranch
我错过了什么吗?