reflog_helpers.h 531 Bytes
Newer Older
1
size_t reflog_entrycount(git_repository *repo, const char *name);
2 3 4 5 6

#define cl_reflog_check_entry(repo, reflog, idx, old_spec, new_spec, email, message) \
    cl_reflog_check_entry_(repo, reflog, idx, old_spec, new_spec, email, message, __FILE__, __LINE__)

void cl_reflog_check_entry_(git_repository *repo, const char *reflog, size_t idx,
7
						const char *old_spec, const char *new_spec,
8
						const char *email, const char *message, const char *file, int line);
9 10

void reflog_print(git_repository *repo, const char *reflog_name);