summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 3cb22b8)
raw | patch | inline | side by side (parent: 3cb22b8)
author | Junio C Hamano <gitster@pobox.com> | |
Sun, 29 Jun 2008 05:24:49 +0000 (22:24 -0700) | ||
committer | Junio C Hamano <gitster@pobox.com> | |
Sun, 29 Jun 2008 05:24:49 +0000 (22:24 -0700) |
This makes the default expiration period for the reflog that implements
stash infinite.
The original behaviour to autoexpire old stashes can be restored by using
the gc.refs/stash.{reflogexpire,reflogexpireunreachable} configration
variables introduced by the previous commit.
Signed-off-by: Junio C Hamano <gitster@pobox.com>
stash infinite.
The original behaviour to autoexpire old stashes can be restored by using
the gc.refs/stash.{reflogexpire,reflogexpireunreachable} configration
variables introduced by the previous commit.
Signed-off-by: Junio C Hamano <gitster@pobox.com>
builtin-reflog.c | patch | blob | history |
diff --git a/builtin-reflog.c b/builtin-reflog.c
index 0711728908f8e387fb061e537ab4a72f8feb63aa..125d455b97ca499806ff417871ab6ce7aad922c5 100644 (file)
--- a/builtin-reflog.c
+++ b/builtin-reflog.c
@@ -441,6 +441,17 @@ static void set_reflog_expiry_param(struct cmd_reflog_expire_cb *cb, int slot, c
}
}
+ /*
+ * If unconfigured, make stash never expire
+ */
+ if (!strcmp(ref, "refs/stash")) {
+ if (!(slot & EXPIRE_TOTAL))
+ cb->expire_total = 0;
+ if (!(slot & EXPIRE_UNREACH))
+ cb->expire_unreachable = 0;
+ return;
+ }
+
/* Nothing matched -- use the default value */
if (!(slot & EXPIRE_TOTAL))
cb->expire_total = default_reflog_expire;