From 8cea4467ed7d0d630dd861ec44fb65b6e44c4fab Mon Sep 17 00:00:00 2001 From: Paulo Bu Date: Thu, 22 Oct 2015 10:17:42 +0200 Subject: [PATCH] Fixes small bug introduced with fbr verbose improvement --- Examples.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)