commit_ref_update(): new function, extracted from write_ref_sha1()
authorMichael Haggerty <mhagger@alum.mit.edu>
Sat, 9 May 2015 15:18:36 +0000 (17:18 +0200)
committerJunio C Hamano <gitster@pobox.com>
Wed, 13 May 2015 04:28:02 +0000 (21:28 -0700)
Signed-off-by: Michael Haggerty <mhagger@alum.mit.edu>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
refs.c
diff --git a/refs.c b/refs.c
index f94682a0b65496fad9916f4d1ad89a63d27417fc..3db88e0b2ad09d826ae20909bfe3dc3502908885 100644 (file)
--- a/refs.c
+++ b/refs.c
@@ -3059,15 +3059,13 @@ static int write_ref_to_lockfile(struct ref_lock *lock,
 }
 
 /*
- * Write sha1 into the ref specified by the lock. Make sure that errno
- * is sane on error.
+ * Commit a change to a loose reference that has already been written
+ * to the loose reference lockfile. Also update the reflogs if
+ * necessary, using the specified lockmsg (which can be NULL).
  */
-static int write_ref_sha1(struct ref_lock *lock,
-       const unsigned char *sha1, const char *logmsg)
+static int commit_ref_update(struct ref_lock *lock,
+                            const unsigned char *sha1, const char *logmsg)
 {
-       if (write_ref_to_lockfile(lock, sha1))
-               return -1;
-
        clear_loose_ref_cache(&ref_cache);
        if (log_ref_write(lock->ref_name, lock->old_sha1, sha1, logmsg) < 0 ||
            (strcmp(lock->ref_name, lock->orig_ref_name) &&
@@ -3106,6 +3104,21 @@ static int write_ref_sha1(struct ref_lock *lock,
        return 0;
 }
 
+/*
+ * Write sha1 as the new value of the reference specified by the
+ * (open) lock. On error, roll back the lockfile and set errno
+ * appropriately.
+ */
+static int write_ref_sha1(struct ref_lock *lock,
+                         const unsigned char *sha1, const char *logmsg)
+{
+       if (write_ref_to_lockfile(lock, sha1) ||
+           commit_ref_update(lock, sha1, logmsg))
+               return -1;
+
+       return 0;
+}
+
 int create_symref(const char *ref_target, const char *refs_heads_master,
                  const char *logmsg)
 {