$ git map-branches
-origin/master
-  cool_feature
-    subfeature
-  fixit
-    frozen_branch *
+$ git map-branches -v
+origin/master                               
+  cool_feature         [ ahead 4            ]
+    subfeature         [ ahead 2 | behind 1 ]
+  fixit                [ ahead 2            ]
+    frozen_branch *    [ ahead 3            ]
 $ git new-branch independent_cl
-$ git map-branches
-origin/master
-  cool_feature
-    subfeature
-  fixit
-    frozen_branch
-  independent_cl *
+$ git map-branches -v
+origin/master                              
+  cool_feature        [ ahead 4            ]
+    subfeature        [ ahead 2 | behind 1 ]
+  fixit               [ ahead 2            ]
+    frozen_branch     [ ahead 3            ]
+  independent_cl *                         
+$ vi foo && git add -A && git commit -m foo
+$ git map-branches -v
+origin/master                              
+  cool_feature        [ ahead 4            ]
+    subfeature        [ ahead 2 | behind 1 ]
+  fixit               [ ahead 2            ]
+    frozen_branch     [ ahead 3            ]
+  independent_cl *    [ ahead 1            ]
 $ git new-branch --upstream subfeature nested_cl
-$ git map-branches
-origin/master
-  cool_feature
-    subfeature <1>
-      nested_cl *
-  fixit
-    frozen_branch
-  independent_cl
+$ git map-branches -v
+origin/master                             
+  cool_feature       [ ahead 4            ]
+    subfeature       [ ahead 2 | behind 1 ] <1>
+      nested_cl *                         
+  fixit              [ ahead 2            ]
+    frozen_branch    [ ahead 3            ]
+  independent_cl     [ ahead 1            ]
 $ git checkout cool_feature
 Switched to branch 'cool_feature'
 Your branch is ahead of 'origin/master' by 4 commits.
   (use "git push" to publish your local commits)
 $ git new-branch --upstream_current cl_depends_on_cool_feature
-$ git map-branches
-origin/master
-  cool_feature
-    cl_depends_on_cool_feature *
-    subfeature
-      nested_cl
-  fixit
-    frozen_branch
-  independent_cl
+$ git map-branches -v
+origin/master                                            
+  cool_feature                      [ ahead 4            ]
+    cl_depends_on_cool_feature *                         
+    subfeature                      [ ahead 2 | behind 1 ]
+      nested_cl                                          
+  fixit                             [ ahead 2            ]
+    frozen_branch                   [ ahead 3            ]
+  independent_cl                    [ ahead 1            ]