dotfiles/fish.configlink/functions/git-show-fuzzy.fish

9 lines
209 B
Fish
Raw Normal View History

function git-show-fuzzy
2021-05-04 15:38:00 +00:00
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