jsvn: add bash_aliases alias example

This commit is contained in:
Josh Holtrop 2011-10-24 23:27:06 -04:00
parent e9bcc035f2
commit 42f97d1a11

7
jsvn
View File

@ -3,7 +3,12 @@
# Josh's SVN wrapper script
#
# Recommend putting in path as 'jsvn' or something other than 'svn' and
# making an alias svn='jsvn'
# making an alias svn='jsvn'. For example, this .bash_aliases stanza
# will check if 'jsvn' is in your path and automatically alias 'svn' to
# it if so:
# if [[ "$(which jsvn 2>/dev/null)" != "" ]]; then
# alias svn='jsvn'
# fi
#
# The script detects if you have colorsvn and colordiff and uses them for
# appropriate subcommands if so.