Staging
v0.8.1
Revision a68972c2ad7c3de582abeed03f660e19950ed66f authored by Ping Yin on 10 April 2008, 14:45:29 UTC, committed by Junio C Hamano on 12 April 2008, 00:35:39 UTC
When "git submodule status" command tries to show the name of the
submodule HEAD revision more descriptively, but the submodule
repository lacked a suitable tag to do so, it leaked "fatal: cannot
describe" message to the UI.  Squelch it by using '--always'.

Signed-off-by: Ping Yin <pkufranky@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent b6309ac
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