summaryrefslogtreecommitdiffstats
path: root/refs.h
diff options
context:
space:
mode:
authorBence Ferdinandy <bence@ferdinandy.com>2024-11-22 13:28:44 +0100
committerJunio C Hamano <gitster@pobox.com>2024-11-25 03:46:35 +0100
commit8102d10ff8317c1e0ba5afb3a41b6a2bc523ff97 (patch)
tree9bbd2ef07f0b60889172b6147f09dec77a96749c /refs.h
parentt/t5505-remote: test failure of set-head (diff)
downloadgit-8102d10ff8317c1e0ba5afb3a41b6a2bc523ff97.tar.xz
git-8102d10ff8317c1e0ba5afb3a41b6a2bc523ff97.zip
refs: standardize output of refs_read_symbolic_ref
When the symbolic reference we want to read with refs_read_symbolic_ref is actually not a symbolic reference, the files and the reftable backends return different values (1 and -1 respectively). Standardize the returned values so that 0 is success, -1 is a generic error and -2 is that the reference was actually non-symbolic. Signed-off-by: Bence Ferdinandy <bence@ferdinandy.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'refs.h')
-rw-r--r--refs.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/refs.h b/refs.h
index 108dfc93b3..22c2b45b8b 100644
--- a/refs.h
+++ b/refs.h
@@ -83,6 +83,17 @@ int refs_read_ref_full(struct ref_store *refs, const char *refname,
int refs_read_ref(struct ref_store *refs, const char *refname, struct object_id *oid);
+#define NOT_A_SYMREF -2
+
+/*
+ * Read the symbolic ref named "refname" and write its immediate referent into
+ * the provided buffer. Referent is left empty if "refname" is not a symbolic
+ * ref. It does not resolve the symbolic reference recursively in case the
+ * target is also a symbolic ref.
+ *
+ * Returns 0 on success, -2 if the "refname" is not a symbolic ref,
+ * -1 otherwise.
+ */
int refs_read_symbolic_ref(struct ref_store *ref_store, const char *refname,
struct strbuf *referent);