(git): Add script to list files in stash.

Created with help of ChatGPT
This commit is contained in:
Stefan Gaiselmann 2025-09-19 11:37:34 +02:00
parent ad07f55ac6
commit ab384ea810

View File

@ -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