2012-05-21 21:25:07 +00:00
|
|
|
#
|
|
|
|
# Lists lost Git commits.
|
|
|
|
#
|
|
|
|
# Authors:
|
|
|
|
# Sorin Ionescu <sorin.ionescu@gmail.com>
|
|
|
|
#
|
|
|
|
|
2017-07-06 23:01:26 +00:00
|
|
|
# function git-commit-lost {
|
|
|
|
|
2018-03-05 08:56:25 +00:00
|
|
|
if ! is-true "$(command git rev-parse --is-inside-work-tree 2> /dev/null)"; then
|
2012-09-30 19:30:18 +00:00
|
|
|
print "$0: not a repository work tree: $PWD" >&2
|
|
|
|
return 1
|
|
|
|
fi
|
|
|
|
|
2018-03-05 08:56:25 +00:00
|
|
|
command git fsck 2> /dev/null \
|
2012-05-21 21:25:07 +00:00
|
|
|
| grep "^dangling commit" \
|
|
|
|
| awk '{print $3}' \
|
2018-03-05 08:56:25 +00:00
|
|
|
| command git log \
|
2012-05-21 21:25:07 +00:00
|
|
|
--date-order \
|
|
|
|
--no-walk \
|
|
|
|
--stdin \
|
2012-10-02 02:26:24 +00:00
|
|
|
--pretty=format:${_git_log_oneline_format}
|
2017-07-06 23:01:26 +00:00
|
|
|
|
|
|
|
# }
|