Staging
v0.5.1
https://github.com/git/git
Revision 82ca50556471eadfc3212cb478161c3da5c4d02a authored by Junio C Hamano on 29 September 2006, 09:06:24 UTC, committed by Junio C Hamano on 30 September 2006, 05:32:16 UTC
Geert noticed that complete rewrite diff missed the usual a/ and b/
leading paths.  Pickaxe says it never worked, ever.

Embarrassing.

Signed-off-by: Junio C Hamano <junkio@cox.net>
(cherry picked from bc1a5807575b2f34538d4158834da6524a4fc1f7 commit)
1 parent f2b5792
Raw File
Tip revision: 82ca50556471eadfc3212cb478161c3da5c4d02a authored by Junio C Hamano on 29 September 2006, 09:06:24 UTC
git-diff -B output fix.
Tip revision: 82ca505
show-index.c
#include "cache.h"

int main(int argc, char **argv)
{
	int i;
	unsigned nr;
	unsigned int entry[6];
	static unsigned int top_index[256];

	if (fread(top_index, sizeof(top_index), 1, stdin) != 1)
		die("unable to read idex");
	nr = 0;
	for (i = 0; i < 256; i++) {
		unsigned n = ntohl(top_index[i]);
		if (n < nr)
			die("corrupt index file");
		nr = n;
	}
	for (i = 0; i < nr; i++) {
		unsigned offset;

		if (fread(entry, 24, 1, stdin) != 1)
			die("unable to read entry %u/%u", i, nr);
		offset = ntohl(entry[0]);
		printf("%u %s\n", offset, sha1_to_hex((void *)(entry+1)));
	}
	return 0;
}
back to top