From 71e0942cc29173f918090fa333408b049c747267 Mon Sep 17 00:00:00 2001 From: Colin Date: Sun, 25 Jun 2023 21:45:47 +0000 Subject: [PATCH] git: configure `git stash show` to actually... SHOW the stash OMFG --- hosts/common/programs/git.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/hosts/common/programs/git.nix b/hosts/common/programs/git.nix index 636bdf793..92e19a131 100644 --- a/hosts/common/programs/git.nix +++ b/hosts/common/programs/git.nix @@ -25,5 +25,7 @@ in # render dates as YYYY-MM-DD HH:MM:SS +TZ log.date = "iso"; + + stash.showPatch = true; }; }