-3

任何时候我开一家分店(我每张票都需要一张),我试着做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

4

1 回答 1

2

一种方法是按照错误消息中的说明进行操作:

git push --set-upstream origin testchx

另一个是设置push.default行为:

git config push.default current

更多详情:

git help config
于 2013-03-29T21:39:32.483 回答