git-diff: -p disables rename detection.
authorJunio C Hamano <junkio@cox.net>
Sun, 12 Mar 2006 01:44:10 +0000 (17:44 -0800)
committerJunio C Hamano <junkio@cox.net>
Sun, 12 Mar 2006 01:44:10 +0000 (17:44 -0800)
git-diff.sh

index dc4d1b3..dc0dd31 100755 (executable)
@@ -38,9 +38,9 @@ case " $flags " in
        flags="$flags'$cc_or_p' " ;;
 esac
 
-# If we do not have -B nor -C, default to -M.
+# If we do not have -B, -C, -r, nor -p, default to -M.
 case " $flags " in
-*" '-"[BCM]* | *" '--find-copies-harder' "*)
+*" '-"[BCMrp]* | *" '--find-copies-harder' "*)
        ;; # something like -M50.
 *)
        flags="$flags'-M' " ;;