dotfiles/bin/executable_git-stash-list-files
2025-09-19 11:37:34 +02:00

8 lines
151 B
Bash

#!/usr/bin/env bash
for STASH in $(git stash list --format="%gd"); do
echo "=== $STASH ==="
git stash show --name-only "$STASH"
echo
done