This creates a bash function g, for git, which defaults to git status when there are no arguments.
g
git
git status
function g () { if [[ $# == 0 ]] then git status else git "$@" fi }