pull: set reflog message
[gitweb.git] / builtin / pull.c
index 492bb0e28ccfaa5503e16cbe3262d9319e3cfb66..98caffee3f2dc5d1fe64c16527d0dd81866af709 100644 (file)
@@ -168,6 +168,25 @@ static void argv_push_force(struct argv_array *arr)
                argv_array_push(arr, "-f");
 }
 
+/**
+ * Sets the GIT_REFLOG_ACTION environment variable to the concatenation of argv
+ */
+static void set_reflog_message(int argc, const char **argv)
+{
+       int i;
+       struct strbuf msg = STRBUF_INIT;
+
+       for (i = 0; i < argc; i++) {
+               if (i)
+                       strbuf_addch(&msg, ' ');
+               strbuf_addstr(&msg, argv[i]);
+       }
+
+       setenv("GIT_REFLOG_ACTION", msg.buf, 0);
+
+       strbuf_release(&msg);
+}
+
 /**
  * If pull.ff is unset, returns NULL. If pull.ff is "true", returns "--ff". If
  * pull.ff is "false", returns "--no-ff". If pull.ff is "only", returns
@@ -443,6 +462,9 @@ int cmd_pull(int argc, const char **argv, const char *prefix)
                        die_errno("could not exec %s", path);
        }
 
+       if (!getenv("GIT_REFLOG_ACTION"))
+               set_reflog_message(argc, argv);
+
        argc = parse_options(argc, argv, prefix, pull_options, pull_usage, 0);
 
        parse_repo_refspecs(argc, argv, &repo, &refspecs);