1
0
mirror of https://github.com/dcarrillo/prezto.git synced 2025-06-14 08:41:43 +00:00

Add the ability to recover dropped Git stashes

This commit is contained in:
Sorin Ionescu
2012-05-21 17:22:49 -04:00
parent 7e60f13d7d
commit f932fa792e
3 changed files with 34 additions and 0 deletions

View File

@ -0,0 +1,18 @@
#
# Lists dropped Git stashed states.
#
# Authors:
# Sorin Ionescu <sorin.ionescu@gmail.com>
#
git fsck --unreachable 2> /dev/null
| grep 'commit' \
| awk '{print $3}' \
| git log \
${git_log_format_oneline}
--extended-regexp \
--grep="${1:-(WIP )?[Oo]n [^:]+:}" \
--merges \
--no-walk \
--stdin