mirror of
https://git.zx2c4.com/cgit
synced 2024-11-22 08:28:42 +00:00
patch: reapply path limit
This was originally applied added in commiteac1b67
(ui-patch: Apply path limit to generated patch, 2010-06-10) but the ability to limit patches to particular paths was lost in commit455b598
(ui-patch.c: Use log_tree_commit() to generate diffs, 2013-08-20). The new output is slightly different from the original because Git's diff infrastructure doesn't give us a way to insert an annotation immediately after the "---" separator, so the commit has moved below the diff stat. Signed-off-by: John Keeping <john@keeping.me.uk>
This commit is contained in:
parent
c177379547
commit
5fe88a9c81
10
ui-patch.c
10
ui-patch.c
@ -18,9 +18,13 @@ void cgit_print_patch(const char *new_rev, const char *old_rev,
|
|||||||
struct commit *commit;
|
struct commit *commit;
|
||||||
struct object_id new_rev_oid, old_rev_oid;
|
struct object_id new_rev_oid, old_rev_oid;
|
||||||
char rev_range[2 * 40 + 3];
|
char rev_range[2 * 40 + 3];
|
||||||
char *rev_argv[] = { NULL, "--reverse", "--format=email", rev_range };
|
const char *rev_argv[] = { NULL, "--reverse", "--format=email", rev_range, "--", prefix };
|
||||||
|
int rev_argc = ARRAY_SIZE(rev_argv);
|
||||||
char *patchname;
|
char *patchname;
|
||||||
|
|
||||||
|
if (!prefix)
|
||||||
|
rev_argc--;
|
||||||
|
|
||||||
if (!new_rev)
|
if (!new_rev)
|
||||||
new_rev = ctx.qry.head;
|
new_rev = ctx.qry.head;
|
||||||
|
|
||||||
@ -79,7 +83,9 @@ void cgit_print_patch(const char *new_rev, const char *old_rev,
|
|||||||
rev.max_parents = 1;
|
rev.max_parents = 1;
|
||||||
rev.diffopt.output_format |= DIFF_FORMAT_DIFFSTAT |
|
rev.diffopt.output_format |= DIFF_FORMAT_DIFFSTAT |
|
||||||
DIFF_FORMAT_PATCH | DIFF_FORMAT_SUMMARY;
|
DIFF_FORMAT_PATCH | DIFF_FORMAT_SUMMARY;
|
||||||
setup_revisions(ARRAY_SIZE(rev_argv), (const char **)rev_argv, &rev,
|
if (prefix)
|
||||||
|
rev.diffopt.stat_sep = fmt("(limited to '%s')\n\n", prefix);
|
||||||
|
setup_revisions(ARRAY_SIZE(rev_argv), rev_argv, &rev,
|
||||||
NULL);
|
NULL);
|
||||||
prepare_revision_walk(&rev);
|
prepare_revision_walk(&rev);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user