Quickie: git aliases

February 15th, 2010

After doing this like three times today:

katy-mac-pro:flex krichard$ git stauts
git: ’stauts’ is not a git-command. See ‘git –help’.

Did you mean this?
status
katy-mac-pro:flex krichard$ git stauts
git: ’stauts’ is not a git-command. See ‘git –help’.

Did you mean this?
status
katy-mac-pro:flex krichard$ git status
# On branch master
# Your branch is ahead of ‘origin/master’ by 1 commit.
#
nothing to commit (working directory clean)

I’ve added the following to my .gitconfig

[alias]
stauts = status

Life is good.