Created
May 30, 2012 16:55
-
-
Save sinsoku/2837601 to your computer and use it in GitHub Desktop.
git-qsave
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/sh | |
if [ -n "`git diff`" ] | |
then | |
git stash save --keep-index | |
git stash apply --index | |
fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment