dotfiles/fish/.config/fish/functions/frbi.fish

4 lines
171 B
Fish

function frbi --description 'Git interactive rebase using fzf'
git rebase -i (git log --pretty=oneline --abbrev-commit --color=always | fzf --ansi | cut -d ' ' -f1)
end