Created
October 20, 2011 10:57
-
-
Save fbrnc/1300893 to your computer and use it in GitHub Desktop.
Additions to ~/.bashrc
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
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