From ab384ea810bada80371ae9912eb76091ec975bcf Mon Sep 17 00:00:00 2001 From: Stefan Gaiselmann Date: Fri, 19 Sep 2025 11:37:34 +0200 Subject: [PATCH] (git): Add script to list files in stash. Created with help of ChatGPT --- bin/executable_git-stash-list-files | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 bin/executable_git-stash-list-files diff --git a/bin/executable_git-stash-list-files b/bin/executable_git-stash-list-files new file mode 100644 index 0000000..473106c --- /dev/null +++ b/bin/executable_git-stash-list-files @@ -0,0 +1,7 @@ +#!/usr/bin/env bash + +for STASH in $(git stash list --format="%gd"); do + echo "=== $STASH ===" + git stash show --name-only "$STASH" + echo +done