任何时候我打开一个分店(我需要一张票)我试着git push
我得到了
fatal: The current branch testchx has no upstream branch.
To push the current branch and set the remote as upstream, use
git push --set-upstream origin testchx
有没有办法告诉git自动执行git push --set-upstream origin testchx
而不是致命的死亡?
Git版本:1.8.1.4
答案 0 :(得分:2)
一种方法是遵循错误消息中的说明:
git push --set-upstream origin testchx
另一种方法是设置push.default
行为:
git config push.default current
更多细节:
git help config