The format for renaming a command (making an alias) in git is git config alias.newcommandname oldcommandname
git config alias.co checkout lets you type git co instead of git checkout
git config alias.stage add lets you type git stage file instead of git add file to stage files
git config alias.unstage 'reset HEAD -- file' lets you type git unstage file instead of git reset HEAD -- file to unstage files