Skip to content

Instantly share code, notes, and snippets.

@AaronRutley
Last active August 29, 2015 14:15
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 AaronRutley/2ed7db1050a7a7308dc6 to your computer and use it in GitHub Desktop.
Save AaronRutley/2ed7db1050a7a7308dc6 to your computer and use it in GitHub Desktop.
Random Git Aliases
# git status
alias gs='function _gs(){
tput bold tput setaf 6
echo "-- git status"
git status -s;
};_gs'
#git push
alias gp ='git push'
# git remove
alias gremove='rm -rf .git'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment