mirror of
https://github.com/dcarrillo/prezto.git
synced 2025-06-14 08:41:43 +00:00
Refactor the listing of lost Git commits
This commit is contained in:
16
modules/git/functions/git-commit-lost
Normal file
16
modules/git/functions/git-commit-lost
Normal file
@ -0,0 +1,16 @@
|
||||
#
|
||||
# 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}
|
||||
|
Reference in New Issue
Block a user