diff options
author | Junio C Hamano <gitster@pobox.com> | 2019-03-07 01:59:54 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2019-03-07 01:59:54 +0100 |
commit | c425d361f5bf46d99cd96d7eac3488ebb2e92b60 (patch) | |
tree | 9cfdd1b91fc759cb1e561c6302bbd9cfe37245ba /diff.h | |
parent | Merge branch 'sc/pack-redundant' (diff) | |
parent | log,diff-tree: add --combined-all-paths option (diff) | |
download | git-c425d361f5bf46d99cd96d7eac3488ebb2e92b60.tar.xz git-c425d361f5bf46d99cd96d7eac3488ebb2e92b60.zip |
Merge branch 'en/combined-all-paths'
Output from "diff --cc" did not show the original paths when the
merge involved renames. A new option adds the paths in the
original trees to the output.
* en/combined-all-paths:
log,diff-tree: add --combined-all-paths option
Diffstat (limited to 'diff.h')
-rw-r--r-- | diff.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -296,6 +296,7 @@ struct combine_diff_path { char status; unsigned int mode; struct object_id oid; + struct strbuf path; } parent[FLEX_ARRAY]; }; #define combine_diff_path_size(n, l) \ |