Staging
v0.5.1
https://github.com/git/git
Revision d9589d4051537c387b70dc76e430c61b4c85a86d authored by Johannes Schindelin on 04 December 2019, 22:05:10 UTC, committed by Johannes Schindelin on 06 December 2019, 15:31:24 UTC
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
1 parent 5421ddd
Raw File
Tip revision: d9589d4051537c387b70dc76e430c61b4c85a86d authored by Johannes Schindelin on 04 December 2019, 22:05:10 UTC
Git 2.22.2
Tip revision: d9589d4
interdiff.c
#include "cache.h"
#include "commit.h"
#include "revision.h"
#include "interdiff.h"

static struct strbuf *idiff_prefix_cb(struct diff_options *opt, void *data)
{
	return data;
}

void show_interdiff(struct rev_info *rev, int indent)
{
	struct diff_options opts;
	struct strbuf prefix = STRBUF_INIT;

	memcpy(&opts, &rev->diffopt, sizeof(opts));
	opts.output_format = DIFF_FORMAT_PATCH;
	opts.output_prefix = idiff_prefix_cb;
	strbuf_addchars(&prefix, ' ', indent);
	opts.output_prefix_data = &prefix;
	diff_setup_done(&opts);

	diff_tree_oid(rev->idiff_oid1, rev->idiff_oid2, "", &opts);
	diffcore_std(&opts);
	diff_flush(&opts);

	strbuf_release(&prefix);
}
back to top