Skip to content

Instantly share code, notes, and snippets.

@thehig
Forked from gwing33/.bash_profile
Last active December 14, 2015 14:52
Show Gist options
  • Save thehig/0c6d273aced9861e2cb8 to your computer and use it in GitHub Desktop.
Save thehig/0c6d273aced9861e2cb8 to your computer and use it in GitHub Desktop.
My git shortcuts in my ~/.bash_profile
# Git Shortcuts
alias g='git'
alias gs='git status'
alias gst='git status -sb'
alias ga='git add'
alias gau='git add -u' # Removes deleted files
alias gp='git pull'
alias gpu='git push'
alias gc='git commit -v'
alias gca='git commit -v -a' # Does both add and commit in same command, add -m 'blah' for comment
alias gco='git checkout'
alias gl='git last -n 15'
alias meteor="cmd //c meteor"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment