Refactor the listing of lost Git commits
This commit is contained in:
parent
f932fa792e
commit
a4cf629c2f
|
@ -32,7 +32,7 @@ alias gcP='git cherry-pick --no-commit'
|
|||
alias gcr='git revert'
|
||||
alias gcR='git reset "HEAD^"'
|
||||
alias gcs='git show'
|
||||
alias gcv='git fsck | awk '\''/dangling commit/ {print $3}'\'' | git show --format="SHA1: %C(green)%h%C(reset) %f" --stdin | awk '\''/SHA1/ {sub("SHA1: ", ""); print}'\'''
|
||||
alias gcl='git-commit-lost'
|
||||
|
||||
# Data (d)
|
||||
alias gd='git ls-files'
|
||||
|
|
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}
|
||||
|
Loading…
Reference in a new issue