Revision 1db4a75c8d18d8827ac710e87219b349558d9196 authored by Shawn O. Pearce on 08 July 2008, 04:46:06 UTC, committed by Junio C Hamano on 08 July 2008, 21:47:04 UTC
Once a clone is successful we no longer need to hold onto the
.keep file created by the transport.  Delete the file so we
can later repack the complete repository.

Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent 0b294c0
Raw File
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