I like how git figures out when to use less, subversion doesn't have that feature so I want to easily get colored output in a pager. the cgrep alias lets me choose quickly. without it there are times I get raw color output.
I also, when grepping through code, don't like to see certain results, like .svn ctags binary files
grep -R sourcecodetext sourcedir | nosvn
Below is what I have in my config files
cat .bash_profile
alias nosvn="grep -v \"\.svn\|tags\|cscope\|Binary\""
alias less="less -R"
alias diff="colordiff -u"
alias cgrep="grep --color=always"
export GREP_OPTIONS='--color=auto'
cat bin/gitdiffwrapper
#!/bin/bash
old_file=$1
tmp_file=$2
old_hex=$3
old_mode=$4
new_file=$5
new_mode=$6
colordiff -u $old_file $tmp_file
cat .gitconfig
[diff]
external = $HOME/bin/gitdiffwrapper
cat .subversion_config | grep ^diff-cmd
diff-cmd = /usr/bin/colordiff