Shallow dive into #git aliases.
I've been perplexed with git shortcuts because it's not your regular unix command and I don't want to solve things by adding more obscure shell commands I can't remember.
Simple git alias shorthand is easy --
git config --global alias.co checkout
Longer aliases are more difficult, but possible. Add the following to ~/.gitconfig to save a lot of typing when tracking remote origin --
[alias]
track = "!f(){ git branch --track $1 origin/$1; }; f"
1/2