dotfiles/fish.configlink/functions/git-checkout-fuzzy.fish

5 lines
116 B
Fish
Raw Normal View History

function git-checkout-fuzzy
set branch (git-fuzzy-branch "checkout branch...")
and git checkout $branch
end