1
0
Fork 0

fix the position of 'git branch -v'

This commit is contained in:
Robert Djurasaj 2013-02-08 09:26:32 -07:00
parent 1c92bc8b35
commit 2f8f44fc89
1 changed files with 15 additions and 15 deletions

View File

@ -145,6 +145,21 @@ Switched to branch 'master'
README hello.rb more.txt test.txt
</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 checkout -b (branchname)
<small>create and immediately switch to a branch</small>
@ -322,21 +337,6 @@ HelloWorld.hello
switch to it so your class renaming changes are isolated. We're going to
change each instance of 'HelloWorld' to 'HiWorld'.</p>
<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>
<pre>
<b>$ git checkout -b change_class</b>
Switched to a new branch 'change_class'