git config --global alias.git '!git'
Now if you do git git status
by mistake you won't get an error lol. I believe this is the most universally useful and unopinionated alias.
The !
makes it treat it as a shell command instead of a git command. Then because it is git it just basically runs the remainder as a git command lol.