diff --git a/Examples.md b/Examples.md index 7400d71..84b1685 100644 --- a/Examples.md +++ b/Examples.md @@ -388,7 +388,7 @@ List all available git commands and help with [`git-commands`](https://github.co # fbr - checkout git branch fbr() { local branches branch - branches=$(git branch -vv) && + branches=$(git --no-pager branch -vv) && branch=$(echo "$branches" | fzf +m) && git checkout $(echo "$branch" | awk '{print $1}' | sed "s/.* //") }