commands.sh / cmds.sh
⌘-K
$ hello, world.
Setup Useful Git Aliases
# Shortening Aliases git config --global alias.co checkoutgit config --global alias.br branchgit config --global alias.cm commitgit config --global alias.st status # Simplify Common Actions git config --global alias.unstage 'reset HEAD --'# This makes the following two commands equivalent:# $ git unstage fileA# $ git reset HEAD -- fileA git config --global alias.last 'log -1 HEAD'

Recommended aliases from git documentation.

made by @shridhargupta