Skip to content

Instantly share code, notes, and snippets.

@fbrnc
Created October 20, 2011 10:57
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 fbrnc/1300893 to your computer and use it in GitHub Desktop.
Save fbrnc/1300893 to your computer and use it in GitHub Desktop.
Additions to ~/.bashrc
alias ll='ls -lha'
# redirect svn diff output to colordiff
svndiff() {
svn diff "${@}" | colordiff
}
# ignore whitespaces
svndiff-white() {
svn diff --diff-cmd diff -x -uw "${@}" | colordiff
}
# Making vi the default editor for commit messages
export SVN_EDITOR=vim
# switch to directory after login
# cd /var/www/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment