Skip to content

Commit 1c92bc8

Browse files
committed
change location of 'git branch -v'
1 parent 6321e12 commit 1c92bc8

File tree

1 file changed

+15
-15
lines changed

1 file changed

+15
-15
lines changed

branching/index.html

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -215,21 +215,6 @@ <h4>
215215
* <span class="green">master</span>
216216
</pre>
217217

218-
<h4>
219-
git branch -v
220-
<small>see the last commit on each branch</small>
221-
</h4>
222-
223-
<p>If we want to see last commits on each branch
224-
we can run <code>git branch -v</code> to see them.</p>
225-
226-
<pre>
227-
<b>$ git branch -v</b>
228-
* <span class="green">master</span> 54b417d fix javascript issue
229-
development 74c111d modify component.json file
230-
testing 62a557a update test scripts
231-
</pre>
232-
233218
<h4>
234219
git push (remote-name) :(branchname)
235220
<small>delete a remote branch</small>
@@ -337,6 +322,21 @@ <h4>
337322
switch to it so your class renaming changes are isolated. We're going to
338323
change each instance of 'HelloWorld' to 'HiWorld'.</p>
339324

325+
<h4>
326+
git branch -v
327+
<small>see the last commit on each branch</small>
328+
</h4>
329+
330+
<p>If we want to see last commits on each branch
331+
we can run <code>git branch -v</code> to see them.</p>
332+
333+
<pre>
334+
<b>$ git branch -v</b>
335+
* <span class="green">master</span> 54b417d fix javascript issue
336+
development 74c111d modify component.json file
337+
testing 62a557a update test scripts
338+
</pre>
339+
340340
<pre>
341341
<b>$ git checkout -b change_class</b>
342342
Switched to a new branch 'change_class'

0 commit comments

Comments
 (0)