mirror of
https://github.com/git/git.git
synced 2024-11-01 14:57:52 +01:00
21746aa34f
svndump parses data that is in SVN dumpfile format produced by `svnadmin dump` with the help of line_buffer and uses repo_tree and fast_export to emit a git fast-import stream. Based roughly on com.hydrografix.svndump 0.92 from the SvnToCCase project at <http://svn2cc.sarovar.org/>, by Stefan Hegny and others. [rr: allow input from files other than stdin] [jn: with test, more error reporting] Signed-off-by: David Barr <david.barr@cordelta.com> Signed-off-by: Ramkumar Ramachandra <artagnon@gmail.com> Signed-off-by: Jonathan Nieder <jrnieder@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
9 lines
177 B
C
9 lines
177 B
C
#ifndef SVNDUMP_H_
|
|
#define SVNDUMP_H_
|
|
|
|
void svndump_init(const char *filename);
|
|
void svndump_read(const char *url);
|
|
void svndump_deinit(void);
|
|
void svndump_reset(void);
|
|
|
|
#endif
|