prezto/modules/git/functions/git-commit-lost

17 lines
267 B
Plaintext
Raw Normal View History

#
# Lists lost Git commits.
#
# Authors:
# Sorin Ionescu <sorin.ionescu@gmail.com>
#
git fsck 2> /dev/null \
| grep "^dangling commit" \
| awk '{print $3}' \
| git log \
--date-order \
--no-walk \
--stdin \
${git_log_format_oneline}