remote-svn, vcs-svn: Enable fetching to private refs
[alt-git.git] / contrib / svn-fe / svn-fe.c
blobc796cc0071ec07f48c8dd1e5913b689efec799df
1 /*
2 * This file is in the public domain.
3 * You may freely use, modify, distribute, and relicense it.
4 */
6 #include <stdlib.h>
7 #include "svndump.h"
9 int main(int argc, char **argv)
11 if (svndump_init(NULL))
12 return 1;
13 svndump_read((argc > 1) ? argv[1] : NULL, "refs/heads/master");
14 svndump_deinit();
15 svndump_reset();
16 return 0;