1
0
Fork 0

add git branch -v explanation

This commit is contained in:
Robert Djurasaj 2013-02-07 11:35:37 -07:00
parent d1c02d6025
commit 5b2906c6d7
1 changed files with 15 additions and 0 deletions

View File

@ -215,6 +215,21 @@ Deleted branch testing (was 78b2670).
* <span class="green">master</span>
</pre>
<h4>
git branch -v
<small>see the last commit on each branch</small>
</h4>
<p>If we want to see last commits on each branch
we can run <code>git branch -v</code> to see them.</p>
<pre>
<b>$ git branch -v</b>
* <span class="green">master</span> 54b417d fix javascript issue
development 74c111d modify component.json file
testing 62a557a update test scripts
</pre>
<h4>
git push (remote-name) :(branchname)
<small>delete a remote branch</small>