summaryrefslogtreecommitdiff
path: root/diff.c
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2013-01-14 16:15:51 (GMT)
committerJunio C Hamano <gitster@pobox.com>2013-01-14 16:15:51 (GMT)
commit90d0b8a9f015c21b8f4a00a88838cd7bda5750e9 (patch)
tree3f70d934cb2d677ee1ba9635ff8f309042297dbb /diff.c
parent6f3f710127b0d5b651915b705a18a25e389fd40d (diff)
parent3d1aa56671e7f33740dcd2cf0642d5ce09bd6a95 (diff)
downloadgit-90d0b8a9f015c21b8f4a00a88838cd7bda5750e9.zip
git-90d0b8a9f015c21b8f4a00a88838cd7bda5750e9.tar.gz
git-90d0b8a9f015c21b8f4a00a88838cd7bda5750e9.tar.bz2
Merge branch 'jc/blame-no-follow'
Teaches "--no-follow" option to "git blame" to disable its whole-file rename detection. * jc/blame-no-follow: blame: pay attention to --no-follow diff: accept --no-follow option
Diffstat (limited to 'diff.c')
-rw-r--r--diff.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/diff.c b/diff.c
index 732d4c2..348f71b 100644
--- a/diff.c
+++ b/diff.c
@@ -3626,6 +3626,8 @@ int diff_opt_parse(struct diff_options *options, const char **av, int ac)
DIFF_OPT_SET(options, FIND_COPIES_HARDER);
else if (!strcmp(arg, "--follow"))
DIFF_OPT_SET(options, FOLLOW_RENAMES);
+ else if (!strcmp(arg, "--no-follow"))
+ DIFF_OPT_CLR(options, FOLLOW_RENAMES);
else if (!strcmp(arg, "--color"))
options->use_color = 1;
else if (!prefixcmp(arg, "--color=")) {