Commit Diff


commit - 95254bfdc0f8f50cbc591e91c54339814c61c984
commit + fb32276d3a9eede1bd78e2c5b45e19c1ee0b4107
blob - 0edebddde8bf909f345753904ed62b3bf1b2498c
blob + 159bc4745c9b779882243571b02e971434cf9a29
--- examples.html
+++ examples.html
@@ -47,7 +47,7 @@ name (<tt>master</tt>).
 In a clean work tree according to <tt>got status</tt>, run:
 <pre class="cmdbox">
 $ <b>got backout master</b>
-$ <b>got commit -m 'oops, roll back previous'</b>
+$ <b>got commit -m 'oops, roll back previous change'</b>
 </pre>
 
 Using <tt>got backout</tt> a second time will now fetch the rolled-back
@@ -76,7 +76,7 @@ commit 82f6abb8b1a22fe62d2a8a8d0cdbb73c9d85fcda
 from: Flan Hacker &lt;flan_hacker@openbsd.org&gt;
 date: Wed Aug 14 21:37:07 2038 UTC
  
-  oops, roll back previous
+  oops, roll back previous change
  
 -----------------------------------------------
 commit 7ef28ff8dd61cbf38f88784ea8c11e373757985f
@@ -122,7 +122,7 @@ The <tt>histedit</tt> command will open a histedit scr
 #   mesg (m): single-line log message for commit above (open editor if empty)
 # Commits will be processed in order from top to bottom of this file.
 pick 7ef28ff8dd61cbf38f88784ea8c11e373757985f this is surely a great idea!
-pick 82f6abb8b1a22fe62d2a8a8d0cdbb73c9d85fcda oops, roll back previous
+pick 82f6abb8b1a22fe62d2a8a8d0cdbb73c9d85fcda oops, roll back previous change
 pick bcb49d15e041ddffb59397d2fe851fdb1729b005 fixed version of previous change
 </pre>
 
@@ -133,7 +133,7 @@ of the latest commit can be changed to that of the ori
 
 <pre class="cmdbox">
 <b>drop</b> 7ef28ff8dd61cbf38f88784ea8c11e373757985f this is surely a great idea!
-<b>drop</b> 82f6abb8b1a22fe62d2a8a8d0cdbb73c9d85fcda oops, roll back previous
+<b>drop</b> 82f6abb8b1a22fe62d2a8a8d0cdbb73c9d85fcda oops, roll back previous change
 pick bcb49d15e041ddffb59397d2fe851fdb1729b005 fixed version of previous change
 <b>mesg this is surely a great idea!</b>
 </pre>