Merge branch 'rw/maint-typofix' into rw/typofix
authorJunio C Hamano <gitster@pobox.com>
Thu, 27 Nov 2008 09:17:09 +0000 (01:17 -0800)
committerJunio C Hamano <gitster@pobox.com>
Thu, 27 Nov 2008 09:17:09 +0000 (01:17 -0800)
* rw/maint-typofix:
Fix typos in the documentation.

1  2 
Documentation/git-commit.txt
Documentation/git-svn.txt
Documentation/user-manual.txt
index a1ce9a8bf76bafa1bb82d1d9a7d5eeb50d575ef6,77604d021603fa7002e416356ae197648093b69d..6203461f41865b2205520d86d9f3bb85629709cc
@@@ -29,8 -29,7 +29,8 @@@ The content to be added can be specifie
  
  3. by listing files as arguments to the 'commit' command, in which
     case the commit will ignore changes staged in the index, and instead
 -   record the current content of the listed files;
 +   record the current content of the listed files (which must already
 +   be known to git);
  
  4. by using the -a switch with the 'commit' command to automatically
     "add" changes from all known files (i.e. all files that are already
@@@ -76,10 -75,8 +76,10 @@@ OPTION
        read the message from the standard input.
  
  --author=<author>::
 -      Override the author name used in the commit.  Use
 -      `A U Thor <author@example.com>` format.
 +      Override the author name used in the commit.  You can use the
 +      standard `A U Thor <author@example.com>` format.  Otherwise,
 +      an existing commit that matches the given string and its author
 +      name is used.
  
  -m <msg>::
  --message=<msg>::
@@@ -95,7 -92,7 +95,7 @@@
  
  -s::
  --signoff::
-       Add Signed-off-by line by the commiter at the end of the commit
+       Add Signed-off-by line by the committer at the end of the commit
        log message.
  
  -n::
@@@ -146,10 -143,6 +146,10 @@@ It is a rough equivalent for
  ------
  but can be used to amend a merge commit.
  --
 ++
 +You should understand the implications of rewriting history if you
 +amend a commit that has already been published.  (See the "RECOVERING
 +FROM UPSTREAM REBASE" section in linkgit:git-rebase[1].)
  
  -i::
  --include::
index ba94cd17d4a2c7dbb43ffba6a61ee1d5fd2f4643,5d6d30f764a7bca813295461104c8f6f46ad0e35..8d0c421b80b5ff110d33583cb1bc5a3b417cad90
@@@ -109,7 -109,7 +109,7 @@@ COMMAND
  
  This works similarly to `svn update` or 'git-pull' except that
  it preserves linear history with 'git-rebase' instead of
- 'git-merge' for ease of dcommiting with 'git-svn'.
+ 'git-merge' for ease of dcommitting with 'git-svn'.
  
  This accepts all options that 'git-svn fetch' and 'git-rebase'
  accept.  However, '--fetch-all' only fetches from the current
@@@ -149,22 -149,6 +149,22 @@@ and have no uncommitted changes
        is very strongly discouraged.
  --
  
 +'branch'::
 +      Create a branch in the SVN repository.
 +
 +-m;;
 +--message;;
 +      Allows to specify the commit message.
 +
 +-t;;
 +--tag;;
 +      Create a tag by using the tags_subdir instead of the branches_subdir
 +      specified during git svn init.
 +
 +'tag'::
 +      Create a tag in the SVN repository. This is a shorthand for
 +      'branch -t'.
 +
  'log'::
        This should make it easy to look up svn log messages when svn
        users refer to -r/--revision numbers.
@@@ -388,8 -372,7 +388,8 @@@ Passed directly to 'git-rebase' when us
  -n::
  --dry-run::
  
 -This can be used with the 'dcommit' and 'rebase' commands.
 +This can be used with the 'dcommit', 'rebase', 'branch' and 'tag'
 +commands.
  
  For 'dcommit', print out the series of git arguments that would show
  which diffs would be committed to SVN.
@@@ -398,9 -381,6 +398,9 @@@ For 'rebase', display the local branch 
  repository associated with the current branch and the URL of svn
  repository that will be fetched from.
  
 +For 'branch' and 'tag', display the urls that will be used for copying when
 +creating the branch or tag.
 +
  --
  
  ADVANCED OPTIONS
@@@ -518,8 -498,6 +518,8 @@@ Tracking and contributing to an entire 
        git svn clone http://svn.example.com/project -T trunk -b branches -t tags
  # View all branches and tags you have cloned:
        git branch -r
 +# Create a new branch in SVN
 +    git svn branch waldo
  # Reset your master to trunk (or any other branch, replacing 'trunk'
  # with the appropriate name):
        git reset --hard remotes/trunk
index c0d8caf46dd4feb53f71f11592a68c3febfc02fa,39c0167e1ec5755a9c9aa9ceb71f60f1fee9644a..da9c6b2999c28501511b8d31e705176ddc9cc3c1
@@@ -18,22 -18,12 +18,22 @@@ People needing to do actual developmen
  Further chapters cover more specialized topics.
  
  Comprehensive reference documentation is available through the man
 -pages.  For a command such as "git clone <repo>", just use
 +pages, or linkgit:git-help[1] command.  For example, for the command
 +"git clone <repo>", you can either use:
  
  ------------------------------------------------
  $ man git-clone
  ------------------------------------------------
  
 +or:
 +
 +------------------------------------------------
 +$ git help clone
 +------------------------------------------------
 +
 +With the latter, you can use the manual viewer of your choice; see
 +linkgit:git-help[1] for more information.
 +
  See also <<git-quick-start>> for a brief overview of git commands,
  without any explanation.
  
@@@ -546,7 -536,7 +546,7 @@@ $ git bisect ski
  -------------------------------------------------
  
  In this case, though, git may not eventually be able to tell the first
- bad one between some first skipped commits and a latter bad commit.
+ bad one between some first skipped commits and a later bad commit.
  
  There are also ways to automate the bisecting process if you have a
  test script that can tell a good from a bad commit. See
@@@ -4366,9 -4356,7 +4366,9 @@@ $ git remote show example       # get detail
  * remote example
    URL: git://example.com/project.git
    Tracked remote branches
 -    master next ...
 +    master
 +    next
 +    ...
  $ git fetch example           # update branches from example
  $ git branch -r                       # list all remote branches
  -----------------------------------------------