# $ git config --global alias.co checkout
# $ git config --global alias.br branch
# $ git config --global alias.ci commit
# $ git config --global alias.st status
# $ git config --global alias.unstage 'reset HEAD --'
# $ git config --global alias.last 'log -1 HEAD'
# $ git config --global credential.helper store

[alias]
	co = checkout
	br = branch
	ci = commit
	st = status
	unstage = reset HEAD --
	last = log -1 HEAD

[credential]
	helper = store
