mirror of
https://github.com/git/git
synced 2024-10-28 19:25:47 +00:00
8e43a1d010
Search for a note attached to the ref to update and read it's 'Revision-number:'-line. Start import from the next svn revision. If there is no next revision in the svn repo, svnrdump terminates with a message on stderr an non-zero return value. This looks a little weird, but there is no other way to know whether there is a new revision in the svn repo. On the start of an incremental import, the parent of the first commit in the fast-import stream is set to the branch name to update. All following commits specify their parent by a mark number. Previous mark files are currently not reused. Signed-off-by: Florian Achleitner <florian.achleitner.2.6.31@gmail.com> Acked-by: David Michael Barr <b@rr-dav.id.au> Signed-off-by: Junio C Hamano <gitster@pobox.com>
31 lines
1.2 KiB
C
31 lines
1.2 KiB
C
#ifndef FAST_EXPORT_H_
|
|
#define FAST_EXPORT_H_
|
|
|
|
struct strbuf;
|
|
struct line_buffer;
|
|
|
|
void fast_export_init(int fd);
|
|
void fast_export_deinit(void);
|
|
|
|
void fast_export_delete(const char *path);
|
|
void fast_export_modify(const char *path, uint32_t mode, const char *dataref);
|
|
void fast_export_note(const char *committish, const char *dataref);
|
|
void fast_export_begin_note(uint32_t revision, const char *author,
|
|
const char *log, unsigned long timestamp, const char *note_ref);
|
|
void fast_export_begin_commit(uint32_t revision, const char *author,
|
|
const struct strbuf *log, const char *uuid,const char *url,
|
|
unsigned long timestamp, const char *local_ref);
|
|
void fast_export_end_commit(uint32_t revision);
|
|
void fast_export_data(uint32_t mode, off_t len, struct line_buffer *input);
|
|
void fast_export_buf_to_data(const struct strbuf *data);
|
|
void fast_export_blob_delta(uint32_t mode,
|
|
uint32_t old_mode, const char *old_data,
|
|
off_t len, struct line_buffer *input);
|
|
|
|
/* If there is no such file at that rev, returns -1, errno == ENOENT. */
|
|
int fast_export_ls_rev(uint32_t rev, const char *path,
|
|
uint32_t *mode_out, struct strbuf *dataref_out);
|
|
int fast_export_ls(const char *path,
|
|
uint32_t *mode_out, struct strbuf *dataref_out);
|
|
|
|
#endif
|