Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/git/git-reference.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Djurasaj <robert.djurasaj@gmail.com>2013-02-08 03:57:13 +0400
committerRobert Djurasaj <robert.djurasaj@gmail.com>2013-02-08 03:57:13 +0400
commit1c92bc8b35bdb53eba4e5d6754fc3ab8741dac67 (patch)
tree2243a371e33d93639a26c2c255f7fdc06524c936
parent6321e126bbf071cf8ea92092f4f134902e417779 (diff)
change location of 'git branch -v'
-rw-r--r--branching/index.html30
1 files changed, 15 insertions, 15 deletions
diff --git a/branching/index.html b/branching/index.html
index 5db0d6d..0a75034 100644
--- a/branching/index.html
+++ b/branching/index.html
@@ -216,21 +216,6 @@ Deleted branch testing (was 78b2670).
</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>
</h4>
@@ -337,6 +322,21 @@ 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'