]> git.pond.sub.org Git - empserver/blobdiff - doc/contributing
ship: Unbreak MOB_ACCESS real-time mobility update for ships
[empserver] / doc / contributing
index 1cbbeb1fbc3834a2638ddafa872021aa9821b158..ad6393e462fcd560a535080de170c166270e7e4a 100644 (file)
@@ -22,7 +22,7 @@ install the "git-core" package.  You can always download from
 
 If you're new to git, try the gittutorial(7) manual page, and the Git
 User's Manual.  Both are also available at <http://git-scm.com/>,
-along with other resources, including the the "Pro Git" book.
+along with other resources, including the "Pro Git" book.
 
 
 Getting sources
@@ -155,9 +155,9 @@ If you want to submit a single commit, prepare it like this:
 This produces a file 0001-<subject>.patch, where <subject> is derived
 from the first line of the commit message.
 
-If you want to submit a whole topic branch based on master, do:
+If you want to submit a whole topic branch based on master, do:
 
-    $ git format-patch -ns --cover-letter
+    $ git format-patch -ns --cover-letter master
 
 This produces 0000-cover-letter.patch 0001-<subject1>.patch
 0002-<subject2>.patch and so on.  Edit 0000-cover-letter.patch so it
@@ -230,7 +230,7 @@ branch, then reset your master to match the origin's:
     $ git branch work
     $ git reset --hard origin/master
 
-Pull update's from origin into your master:
+Pull updates from origin into your master:
 
     $ git pull