mirror of
https://github.com/nmasur/dotfiles
synced 2024-11-10 01:42:55 +00:00
11 lines
351 B
Fish
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
|