Skip to content

Instantly share code, notes, and snippets.

@csavage-mdsol
Created March 18, 2015 05:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save csavage-mdsol/3ca7d668c94a42a4f8ce to your computer and use it in GitHub Desktop.
Save csavage-mdsol/3ca7d668c94a42a4f8ce to your computer and use it in GitHub Desktop.
zsh git function
# No arguments: `git status`
# With arguments: acts like `git`
g() {
if [[ $# > 0 ]]; then
git $@
else
git status
fi
}
# Complete g like git
compdef g=git
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment