Open3

git

Yoshiharu SuzukiYoshiharu Suzuki

push.autoSetupRemote (upstreamの追跡の付与)

https://git-scm.com/docs/git-config/2.39.0#Documentation/git-config.txt-pushautoSetupRemote

push.defaultに加えてこれもつけると、push時に自動でアップストリームのトラックもやってくれる。

$ git config --global --type bool push.autoSetupRemote true
# ローカルブランチは some-branchとする
$ git push -u origin some-branch

と打っていたのが

$ git push

だけでよくなる。

参考:
https://shogo82148.github.io/blog/2022/08/11/2022-08-11-git-push-auto-setup-remote/