diff --git a/Examples.md b/Examples.md index 13525a0..bde1b9e 100644 --- a/Examples.md +++ b/Examples.md @@ -235,7 +235,7 @@ fbr() { local branches branch branches=$(git branch -vv) && branch=$(echo "$branches" | fzf +m) && - git checkout $(echo "$branch" | sed "s/.* //") + git checkout $(echo "$branch" | awk '{print $1}' | sed "s/.* //") } # fbr - checkout git branch (including remote branches)