From 5b2906c6d7388da1a0b7b34c44352dd6fe7fb670 Mon Sep 17 00:00:00 2001 From: Robert Djurasaj Date: Thu, 7 Feb 2013 11:35:37 -0700 Subject: [PATCH] add git branch -v explanation --- branching/index.html | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/branching/index.html b/branching/index.html index 9b2434d..5db0d6d 100644 --- a/branching/index.html +++ b/branching/index.html @@ -215,6 +215,21 @@ Deleted branch testing (was 78b2670). * master +

+ git branch -v + see the last commit on each branch +

+ +

If we want to see last commits on each branch + we can run git branch -v to see them.

+ +
+$ git branch -v
+* master      54b417d fix javascript issue
+  development 74c111d modify component.json file
+  testing     62a557a update test scripts
+
+

git push (remote-name) :(branchname) delete a remote branch