Skip to content

Instantly share code, notes, and snippets.

@kevindurb
Created May 29, 2014 15:58
Show Gist options
  • Save kevindurb/ee0a9c8e015654477c75 to your computer and use it in GitHub Desktop.
Save kevindurb/ee0a9c8e015654477c75 to your computer and use it in GitHub Desktop.
git aliases
# git aliases to make stuff faster
alias gits="tig status"
alias gitc="git commit -a"
alias gita="git amend"
alias gitcp="git cherry-pick"
alias gitp="git push origin"
alias gitd="git diff -w"
alias gitpu="git smart-pull"
alias gitl="tig"
alias gitch="git checkout"
alias gitdep="git push deploy master"
alias ungit="git undo -h"
alias ccb="cd ~/projects/ccb"
alias resources="cd ~/projects/resources"
# other aliases to make stuff faster
alias lss="ls -lAF"
alias c="clear"
alias localsql="mysql --auto-rehash -h localhost -u root -p"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment