summaryrefslogtreecommitdiff
path: root/refs.h
diff options
context:
space:
mode:
authorDavid Turner <dturner@twopensource.com>2015-07-21 21:04:52 (GMT)
committerJunio C Hamano <gitster@pobox.com>2015-07-21 21:07:59 (GMT)
commitabd0cd3a3018e1c4e9e4437fb3911d6658e99fec (patch)
treef6d25ec6ea6d7ee8897f0f2b45fe7cfecbd47285 /refs.h
parent4e2bef57c9629ef869091d9ad41dc6d09528a662 (diff)
downloadgit-abd0cd3a3018e1c4e9e4437fb3911d6658e99fec.zip
git-abd0cd3a3018e1c4e9e4437fb3911d6658e99fec.tar.gz
git-abd0cd3a3018e1c4e9e4437fb3911d6658e99fec.tar.bz2
refs: new public ref function: safe_create_reflog
The safe_create_reflog function creates a reflog, if it does not already exist. The log_ref_setup function becomes private and gains a force_create parameter to force the creation of a reflog even if log_all_ref_updates is false or the refname is not one of the special refnames. The new parameter also reduces the need to store, modify, and restore the log_all_ref_updates global before reflog creation. In a moment, we will use this to add reflog creation commands to git-reflog. Signed-off-by: David Turner <dturner@twopensource.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'refs.h')
-rw-r--r--refs.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/refs.h b/refs.h
index 7cfc2e0..de68a45 100644
--- a/refs.h
+++ b/refs.h
@@ -191,7 +191,7 @@ extern int peel_ref(const char *refname, unsigned char *sha1);
/*
* Setup reflog before using. Fill in err and return -1 on failure.
*/
-int log_ref_setup(const char *refname, struct strbuf *logfile, struct strbuf *err);
+int safe_create_reflog(const char *refname, int force_create, struct strbuf *err);
/** Reads log for the value of ref during at_time. **/
extern int read_ref_at(const char *refname, unsigned int flags,