Staging
v0.5.1
https://github.com/git/git
Raw File
Tip revision: a1b6fb04b1c1b581dfac5c13641af8b3ae44810f authored by Junio C Hamano on 19 July 2008, 17:58:01 UTC
GIT 1.5.6.4
Tip revision: a1b6fb0
test-absolute-path.c
#include "cache.h"

int main(int argc, char **argv)
{
	while (argc > 1) {
		puts(make_absolute_path(argv[1]));
		argc--;
		argv++;
	}
	return 0;
}
back to top