Created
May 30, 2019 18:00
-
-
Save patrickjholloway/5f8100527db8bbf459f951fdf319d476 to your computer and use it in GitHub Desktop.
This file contains 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/zsh | |
mkdir ../stashes | |
git stash list| sed 's/\//\_/g'|sed 's/ /\_/g' | awk -F ":" '{ system("git stash show -p " $1 " >> \"../stashes/" substr($1$2$3, 0, 40) ".diff\"" ) }' | |
cd .. | |
rm -rf ./console | |
git clone [email protected]:Kinvey/console.git | |
cd ./console |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment