Created at: 2025-03-08
A few notes on having better settings for git.
The default way sorting branches for display via git branch
is alphanumeric.
git config --global branch.sort -committerdate
Listing semver tags using alphanumeric ordering can be messy. For example:
# 101 shouldn't come after 1000
$ git tag
nightly/0.5.100
nightly/0.5.1000
nightly/0.5.1001
nightly/0.5.101
nightly/0.5.1010
git config --global tag.sort version:refname
It doesn't need to be main
, but just pick one so that git won't display the
annoying message:
hint: Using 'master' as the name for the initial branch. This default branch name
hint: is subject to change. To configure the initial branch name to use in all
hint: of your new repositories, which will suppress this warning, call:
hint:
hint: git config --global init.defaultBranch <name>
hint:
hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and
hint: 'development'. The just-created branch can be renamed via this command:
git config --global init.defaultBranch main
By default git uses the "myers" algorithm. But there are better alternatives. The "histogram" algorithm is often a better choice.
git config --global diff.algorithm histogram
When moving code from one place to another, the default is to display the code as added. But you can colour-code it so that moved code appears different than new code. For that, you use colorMoved
diff.colorMoved
: If set to either a valid
git config --global diff.colorMoved plain
plain
: Any line that is added in one location and was removed in another
location will be colored with color.diff.newMoved
. Similarly
color.diff.oldMoved
will be used for removed lines that are added somewhere
else in the diff. This mode picks up any moved line, but it is not very useful
in a review to determine if a block of code was moved without permutation.
diff.renames
: Whether and how Git detects renames. If set to false, rename
detection is disabled. If set to true, basic rename detection is enabled. If
set to copies or copy, Git will detect copies, as well. Defaults to true. Note
that this affects only git diff Porcelain like git-diff(1) and git-log(1), and
not lower level commands such as git-diff-files(1).
git config --global diff.renames true
git config --global diff.mnemonicPrefix true
Instead of showing a/ b/
in the changes header, it shows i/ w/
where "i"
is the local index, and "w" is the work tree.
# When pushing, push to the current branch with the same name on the remote.
git config --global push.default simple
# If the branch trying to be pushed to doesn't exist in the remote, create it.
git config --global push.autoSetupRemote true
If you typed the wrong git command, git may try to correct it for you by asking
you to prompt Y/n
:
git config --global help.autocorrect prompt
When running git commit
, you usually see a "commented out" information about
the files you are including and what they've changed. This change will also
show you the "diff" in that window:
git config --global commit.verbose true
Readings: - how git core devs configure git