diff options
author | Junio C Hamano <gitster@pobox.com> | 2012-02-13 11:42:18 -0800 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2012-02-13 11:42:18 -0800 |
commit | 4daf6fc837f7cc84335958b9d9e8a29e41b4ee8e (patch) | |
tree | a6fbd54fee0a3d58d91db28da0fa36b4ebb854d9 /builtin | |
parent | Merge branch 'jc/parse-date-raw' into maint (diff) | |
parent | add -e: do not show difference in a submodule that is merely dirty (diff) | |
download | tgif-4daf6fc837f7cc84335958b9d9e8a29e41b4ee8e.tar.xz |
Merge branch 'js/add-e-submodule-fix' into maint
* js/add-e-submodule-fix:
add -e: do not show difference in a submodule that is merely dirty
Diffstat (limited to 'builtin')
-rw-r--r-- | builtin/add.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/builtin/add.c b/builtin/add.c index 1c42900ff8..b79336d712 100644 --- a/builtin/add.c +++ b/builtin/add.c @@ -280,6 +280,7 @@ static int edit_patch(int argc, const char **argv, const char *prefix) argc = setup_revisions(argc, argv, &rev, NULL); rev.diffopt.output_format = DIFF_FORMAT_PATCH; + DIFF_OPT_SET(&rev.diffopt, IGNORE_DIRTY_SUBMODULES); out = open(file, O_CREAT | O_WRONLY, 0644); if (out < 0) die (_("Could not open '%s' for writing."), file); |