I think of this every time I write git git status
It's rare that my stale prompt has a "git" in it.
Most of my git commands have mnemonic aliases like "gs", "gd", "gl".
I usually have the problem where a stale "ls" or "vim" inhabits the prompt.
This should be "aliases".
[alias]
really = !exec git
This solves the common situation where you could’ve sworn you pushed your worl, but colleague can’t find it regardless. You can then `git really push` to be sure.
ggm•49m ago
messe•45m ago
[1]: Unless git is doing fork()+exec() and then waiting for the exit code.