]> git.ipfire.org Git - thirdparty/git.git/commitdiff
sequencer: allow create_autostash to run silently
authorHarald Nordgren <haraldnordgren@gmail.com>
Sun, 12 Apr 2026 11:51:43 +0000 (11:51 +0000)
committerJunio C Hamano <gitster@pobox.com>
Sun, 12 Apr 2026 22:11:39 +0000 (15:11 -0700)
Add a silent parameter to create_autostash_internal and introduce
create_autostash_ref_silent so that callers can create an autostash
without printing the "Created autostash" message.

Signed-off-by: Harald Nordgren <haraldnordgren@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
sequencer.c
sequencer.h

index b7d8dca47f4a58a7b67340dabea99a0f3ace86d0..1197d7d8a0801d83d1f9eacbd60cf26eb2b541de 100644 (file)
@@ -4657,7 +4657,8 @@ static enum todo_command peek_command(struct todo_list *todo_list, int offset)
 
 static void create_autostash_internal(struct repository *r,
                                      const char *path,
-                                     const char *refname)
+                                     const char *refname,
+                                     bool silent)
 {
        struct strbuf buf = STRBUF_INIT;
        struct lock_file lock_file = LOCK_INIT;
@@ -4702,7 +4703,8 @@ static void create_autostash_internal(struct repository *r,
                                        &oid, null_oid(the_hash_algo), 0, UPDATE_REFS_DIE_ON_ERR);
                }
 
-               printf(_("Created autostash: %s\n"), buf.buf);
+               if (!silent)
+                       printf(_("Created autostash: %s\n"), buf.buf);
                if (reset_head(r, &ropts) < 0)
                        die(_("could not reset --hard"));
                discard_index(r->index);
@@ -4714,12 +4716,17 @@ static void create_autostash_internal(struct repository *r,
 
 void create_autostash(struct repository *r, const char *path)
 {
-       create_autostash_internal(r, path, NULL);
+       create_autostash_internal(r, path, NULL, false);
 }
 
 void create_autostash_ref(struct repository *r, const char *refname)
 {
-       create_autostash_internal(r, NULL, refname);
+       create_autostash_internal(r, NULL, refname, false);
+}
+
+void create_autostash_ref_silent(struct repository *r, const char *refname)
+{
+       create_autostash_internal(r, NULL, refname, true);
 }
 
 static int apply_save_autostash_oid(const char *stash_oid, int attempt_apply)
index a6fa670c7c1f99a8bcd68f58540ee793b67894bc..570f804457b84920af76ef7cfd2c035a4c2b74fd 100644 (file)
@@ -230,6 +230,7 @@ void commit_post_rewrite(struct repository *r,
 
 void create_autostash(struct repository *r, const char *path);
 void create_autostash_ref(struct repository *r, const char *refname);
+void create_autostash_ref_silent(struct repository *r, const char *refname);
 int save_autostash(const char *path);
 int save_autostash_ref(struct repository *r, const char *refname);
 int apply_autostash(const char *path);