This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Git Aliases | |
alias gitr='cd `git root`' | |
alias gpr='git pull --rebase && git --no-pager hist @{1}.. && echo' | |
alias gpom='git push origin master' | |
alias gs="git status" | |
alias gp="echo 'Pushing commits:' && git --no-pager hist HEAD@{upstream}.. && echo '' && git push" | |
alias gd="git diff" | |
alias gds="git diff --shortstat" | |
alias gl="git log" | |
alias gk="gitx" |