(git): Add script to list files in stash.
Created with help of ChatGPT
This commit is contained in:
parent
ad07f55ac6
commit
ab384ea810
7
bin/executable_git-stash-list-files
Normal file
7
bin/executable_git-stash-list-files
Normal 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
|
||||
Loading…
Reference in New Issue
Block a user