Add git configuration for branch.autoSetupMerge

This commit is contained in:
Josh Holtrop 2025-07-18 11:45:22 -04:00
parent 5bae9bc66e
commit 893eff8eec

View File

@ -28,6 +28,9 @@ function git-config-joshs()
git config --global init.defaultBranch master
# Only use configured user.name/user.email; do not guess them
git config --global user.useConfigOnly true
# Do not automatically mark my branch as tracking the remote branch that I
# happened to use as the starting point.
git config --global branch.autoSetupMerge false
}
function git-config-local-personal()
{