mirror of
https://github.com/nmasur/dotfiles
synced 2024-11-10 09:52:56 +00:00
9 lines
254 B
Fish
9 lines
254 B
Fish
set commitline (git log \
|
|
--pretty="format:%C(auto)%ar %h%d %s" \
|
|
| fzf \
|
|
--height 50% \
|
|
--preview 'git show --color=always (echo {} | cut -d" " -f4)' \
|
|
)
|
|
and set commit (echo $commitline | cut -d" " -f4)
|
|
and echo $commit
|