Ignore whitespace in git diffs; a few aliases

This commit is contained in:
Yan Pritzker 2012-10-07 22:09:36 -07:00
parent 592c59f1b3
commit e1fe13d022

View File

@ -60,6 +60,8 @@ alias gm='git merge'
alias gms='git merge --squash' alias gms='git merge --squash'
alias gam='git amend --reset-author' alias gam='git amend --reset-author'
alias grv='git remote -v' alias grv='git remote -v'
alias grr='git remote rm'
alias grad='git remote add'
alias gr='git rebase' alias gr='git rebase'
alias gra='git rebase --abort' alias gra='git rebase --abort'
alias ggrc='git rebase --continue' alias ggrc='git rebase --continue'
@ -72,8 +74,8 @@ alias gf='git fetch'
alias gfch='git fetch' alias gfch='git fetch'
alias gd='git diff' alias gd='git diff'
alias gb='git b' alias gb='git b'
alias gbd='git b -D' alias gbd='git b -D -w'
alias gdc='git diff --cached' alias gdc='git diff --cached -w'
alias gpub='grb publish' alias gpub='grb publish'
alias gtr='grb track' alias gtr='grb track'
alias gpl='git pull' alias gpl='git pull'
@ -107,6 +109,7 @@ alias co='script/console --irb=pry' # Rails 2
alias ts='thin start' alias ts='thin start'
alias ms='mongrel_rails start' alias ms='mongrel_rails start'
alias tfdl='tail -f log/development.log' alias tfdl='tail -f log/development.log'
alias tftl='tail -f log/test.log'
# Vim/ctags "mctags = make ctags", using the ruby specific version # Vim/ctags "mctags = make ctags", using the ruby specific version
# to save some time # to save some time