dotfiles/fish/.config/fish/functions/fcR.fish

4 lines
180 B
Fish

function fcR --description 'Git revert a selected commit using fzf'
git revert (git log --pretty=oneline --abbrev-commit --color=always | fzf --ansi +s | awk '{print $1}')
end