Add aliases for GIT-SVN (rebase and dcommit)

- Add "gsr" for "git svn rebase"
- Add "gsd" for "git svn dcommit"
pull/162/head
Willy Barro 2012-09-25 17:59:45 -03:00
parent 5c0e1437d4
commit 449d6d4fe1
1 changed files with 4 additions and 0 deletions

View File

@ -28,6 +28,10 @@ alias gdel='git branch -D'
alias gmu='git fetch origin -v; git fetch upstream -v; git merge upstream/master'
alias gll='git log --graph --pretty=oneline --abbrev-commit'
# Git SVN
alias gsr='git svn rebase'
alias gsd='git svn dcommit'
case $OSTYPE in
linux*)
alias gd='git diff | vim -R -'