diff options
author | Junio C Hamano <gitster@pobox.com> | 2014-06-16 10:07:09 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2014-06-16 10:07:09 -0700 |
commit | b0e2c999af7aa69a0b8d9677107d4c09938e528a (patch) | |
tree | fb8ea45a1fb8ea9a9cd1f75e0650da53e9316ded /diff.c | |
parent | b83163643bd7459385003fa58ae049a31f2984cb (diff) | |
parent | dd63f169d9381a77db469325688a2bef1a79a9e1 (diff) | |
download | git-b0e2c999af7aa69a0b8d9677107d4c09938e528a.tar.gz |
Merge branch 'jk/diff-follow-must-take-one-pathspec'
* jk/diff-follow-must-take-one-pathspec:
move "--follow needs one pathspec" rule to diff_setup_done
Diffstat (limited to 'diff.c')
-rw-r--r-- | diff.c | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -3320,6 +3320,9 @@ void diff_setup_done(struct diff_options *options) } options->diff_path_counter = 0; + + if (DIFF_OPT_TST(options, FOLLOW_RENAMES) && options->pathspec.nr != 1) + die(_("--follow requires exactly one pathspec")); } static int opt_arg(const char *arg, int arg_short, const char *arg_long, int *val) |