summaryrefslogtreecommitdiff
path: root/include/git2/sys/refdb_backend.h
diff options
context:
space:
mode:
authorCarlos Martín Nieto <cmn@dwim.me>2013-08-21 05:12:49 +0200
committerCarlos Martín Nieto <cmn@dwim.me>2013-10-02 06:53:24 +0200
commit0174794a955dbec1e2d9ecf581833fc23c7e844c (patch)
tree6f0932f96eb59863327662c8665a94768c7d7b7b /include/git2/sys/refdb_backend.h
parentd274deea23a2c2a70ee1695e8f917dbca50c76b7 (diff)
downloadlibgit2-0174794a955dbec1e2d9ecf581833fc23c7e844c.tar.gz
reflog: bring _append and _drop back to the frontend
These functions act purely on the reflog data structure.
Diffstat (limited to 'include/git2/sys/refdb_backend.h')
-rw-r--r--include/git2/sys/refdb_backend.h12
1 files changed, 0 insertions, 12 deletions
diff --git a/include/git2/sys/refdb_backend.h b/include/git2/sys/refdb_backend.h
index 93c4a521a..9cf5073fb 100644
--- a/include/git2/sys/refdb_backend.h
+++ b/include/git2/sys/refdb_backend.h
@@ -131,23 +131,11 @@ struct git_refdb_backend {
int (*reflog_write)(git_refdb_backend *backend, git_reflog *reflog);
/**
- * Append an entry to the given reflog
- */
- int (*reflog_append)(git_refdb_backend *backend, git_reflog *reflog,
- const git_oid *new_oid, const git_signature *committer,
- const char *msg);
-
- /**
* Rename a reflog
*/
int (*reflog_rename)(git_refdb_backend *_backend, const char *old_name, const char *new_name);
/**
- * Drop an entry from the reflog
- */
- int (*reflog_drop)(git_refdb_backend *_backend, git_reflog *reflog,
- size_t idx, int rewrite_previous_entry);
- /**
* Remove a reflog.
*/
int (*reflog_delete)(git_refdb_backend *backend, const char *name);