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