-
-
Save lefou/266a8765f0812ab9806d3b814732e057 to your computer and use it in GitHub Desktop.
gitk wrapper that also includes all stashes
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
#!/usr/bin/env sh | |
if [ "x$@" = "x" ] ; then | |
gitk --all `git stash list '--pretty=format:%gd'` & | |
else | |
gitk "$@" & | |
fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment