17 lines
267 B
Plaintext
17 lines
267 B
Plaintext
|
#
|
||
|
# 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}
|
||
|
|