dotfiles/fish.configlink/functions/git-show-fuzzy.fish
2021-05-04 11:38:00 -04:00

9 lines
209 B
Fish

function git-show-fuzzy
set commitline (git log \
--pretty="format:%C(auto)%ar %h%d %s" \
| fzf \
)
and set commit (echo $commitline | cut -d" " -f4 )
and git show $commit
end