Staging
v0.5.1
https://github.com/git/git
Revision a452d148d10a89ae502bc4755c191ab323227ce5 authored by Junio C Hamano on 26 August 2011, 04:00:46 UTC, committed by Junio C Hamano on 26 August 2011, 04:00:46 UTC
Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent 284daf2
Raw File
Tip revision: a452d148d10a89ae502bc4755c191ab323227ce5 authored by Junio C Hamano on 26 August 2011, 04:00:46 UTC
Git 1.7.7-rc0
Tip revision: a452d14
test-svn-fe.c
/*
 * test-svn-fe: Code to exercise the svn import lib
 */

#include "git-compat-util.h"
#include "vcs-svn/svndump.h"

int main(int argc, char *argv[])
{
	if (argc != 2)
		usage("test-svn-fe <file>");
	if (svndump_init(argv[1]))
		return 1;
	svndump_read(NULL);
	svndump_deinit();
	svndump_reset();
	return 0;
}
back to top