Created
November 21, 2019 05:44
-
-
Save sfdcale/2e4ed709f61d888c58d1deb6cd0645ab to your computer and use it in GitHub Desktop.
Lists file names from git stash
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| for i in {0..13} | |
| do | |
| echo "Stash number: $i" | |
| git stash show -p stash@{$i} --name-only | cat | |
| done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment