From 9a15d204a76e008160b091c57cafe32c8bb5aa7a Mon Sep 17 00:00:00 2001 From: Paulo Bu Date: Fri, 16 Oct 2015 10:25:24 +0200 Subject: [PATCH] I found super useful to see what the latest commit for a branch is, because it helps me better identify it, that's what -vv does. Hope it helps --- Examples.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Examples.md b/Examples.md index 3bbd616..13525a0 100644 --- a/Examples.md +++ b/Examples.md @@ -233,7 +233,7 @@ fkill() { # fbr - checkout git branch fbr() { local branches branch - branches=$(git branch) && + branches=$(git branch -vv) && branch=$(echo "$branches" | fzf +m) && git checkout $(echo "$branch" | sed "s/.* //") }