rename diff to sdiff in common aliases

because diff is already a common command!

Signed-off-by: Gaetan Semet <gaetan@xeberon.net>
This commit is contained in:
Gaetan Semet 2015-04-22 18:18:17 +02:00
commit 87bcbe7fe1

View file

@ -72,7 +72,7 @@ alias saguagu="sudo apt-get update && sudo apt-get upgrade"
# Use Gits colored diff when available
hash git &>/dev/null
if [ $? -eq 0 ]; then
function diff() {
function sdiff() {
git diff --no-index --color-words "$@"
}
fi