Staging
v0.5.1
https://github.com/git/git
Raw File
Tip revision: 1d2375ddfee18bd3effd2c1f98527cc2f8b1df0a authored by Junio C Hamano on 08 April 2008, 04:57:43 UTC
GIT 1.5.5
Tip revision: 1d2375d
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