1
0
mirror of https://github.com/nmasur/dotfiles synced 2025-02-25 10:42:03 +00:00
2023-02-20 20:37:37 -05:00

11 lines
351 B
Fish

set -l current (git rev-parse --abbrev-ref HEAD | tr -d '\n')
set -l branch (git branch \
--format "%(refname:short)" \
| fzf \
--height 50% \
--header="On $current, $header" \
--preview-window right:70% \
--preview 'git log {} --color=always --pretty="format:%C(auto)%ar %h%d %s"' \
)
and echo $branch