Merge branch 'ow/manpages-typofix'
authorJunio C Hamano <gitster@pobox.com>
Fri, 7 Feb 2014 19:55:11 +0000 (11:55 -0800)
committerJunio C Hamano <gitster@pobox.com>
Fri, 7 Feb 2014 19:55:12 +0000 (11:55 -0800)
Various typofixes, all looked correct.

* ow/manpages-typofix:
Documentation: fix typos in man pages

1  2 
Documentation/git-clone.txt
Documentation/gitcli.txt
Documentation/gitweb.conf.txt
Documentation/user-manual.txt
index 49878570bfabd3871d2c2c04cadcac52c66a448d,3865658878e73c9cb598a463aa918a36db6910c8..bf3dac0ceffdaa6490f30a507d11cff2d199d9de
@@@ -181,7 -181,12 +181,7 @@@ objects from the source repository int
  
  --depth <depth>::
        Create a 'shallow' clone with a history truncated to the
 -      specified number of revisions.  A shallow repository has a
 -      number of limitations (you cannot clone or fetch from
 -      it, nor push from nor into it), but is adequate if you
 -      are only interested in the recent history of a large project
 -      with a long history, and would want to send in fixes
 -      as patches.
 +      specified number of revisions.
  
  --[no-]single-branch::
        Clone only the history leading to the tip of a single branch,
  --separate-git-dir=<git dir>::
        Instead of placing the cloned repository where it is supposed
        to be, place the cloned repository at the specified directory,
-       then make a filesytem-agnostic Git symbolic link to there.
+       then make a filesystem-agnostic Git symbolic link to there.
        The result is Git repository can be separated from working
        tree.
  
diff --combined Documentation/gitcli.txt
index 3f33ca5507a7a4b61030b1ad04b37387d7abdb37,c814a3c5cef3d2d9fed7817479a97730fd1c15f3..1c3e109cb3d30e69121f9b6681e870a66cf04609
@@@ -28,7 -28,7 +28,7 @@@ arguments.  Here are the rules
     they can be disambiguated by placing `--` between them.
     E.g. `git diff -- HEAD` is, "I have a file called HEAD in my work
     tree.  Please show changes between the version I staged in the index
-    and what I have in the work tree for that file". not "show difference
+    and what I have in the work tree for that file", not "show difference
     between the HEAD commit and the work tree as a whole".  You can say
     `git diff HEAD --` to ask for the latter.
  
@@@ -72,11 -72,11 +72,11 @@@ scripting Git
   * splitting short options to separate words (prefer `git foo -a -b`
     to `git foo -ab`, the latter may not even work).
  
 - * when a command line option takes an argument, use the 'sticked' form.  In
 + * when a command line option takes an argument, use the 'stuck' form.  In
     other words, write `git foo -oArg` instead of `git foo -o Arg` for short
     options, and `git foo --long-opt=Arg` instead of `git foo --long-opt Arg`
     for long options.  An option that takes optional option-argument must be
 -   written in the 'sticked' form.
 +   written in the 'stuck' form.
  
   * when you give a revision parameter to a command, make sure the parameter is
     not ambiguous with a name of a file in the work tree.  E.g. do not write
@@@ -165,7 -165,7 +165,7 @@@ $ git foo -o Ar
  ----------------------------
  
  However, this is *NOT* allowed for switches with an optional value, where the
 -'sticked' form must be used:
 +'stuck' form must be used:
  ----------------------------
  $ git describe --abbrev HEAD     # correct
  $ git describe --abbrev=10 HEAD  # correct
index db4154f9d5c84bfb1dc4453f3c3d5be1a525fc02,b845a456914f6e3412e361e3fe25e7e944c8e1f3..952f503afb6dd8e65ffeaf09425a0968593f39b5
@@@ -630,13 -630,13 +630,13 @@@ need to set this element to empty list 
  
  override::
        If this field has a true value then the given feature is
-       overriddable, which means that it can be configured
+       overridable, which means that it can be configured
        (or enabled/disabled) on a per-repository basis.
  +
  Usually given "<feature>" is configurable via the `gitweb.<feature>`
  config variable in the per-repository Git configuration file.
  +
- *Note* that no feature is overriddable by default.
+ *Note* that no feature is overridable by default.
  
  sub::
        Internal detail of implementation.  What is important is that
@@@ -849,43 -849,6 +849,43 @@@ time zones in the form of "+/-HHMM", su
  +
  Project specific override is not supported.
  
 +extra-branch-refs::
 +      List of additional directories under "refs" which are going to
 +      be used as branch refs. For example if you have a gerrit setup
 +      where all branches under refs/heads/ are official,
 +      push-after-review ones and branches under refs/sandbox/,
 +      refs/wip and refs/other are user ones where permissions are
 +      much wider, then you might want to set this variable as
 +      follows:
 ++
 +--------------------------------------------------------------------------------
 +$feature{'extra-branch-refs'}{'default'} =
 +      ['sandbox', 'wip', 'other'];
 +--------------------------------------------------------------------------------
 ++
 +This feature can be configured on per-repository basis after setting
 +$feature{'extra-branch-refs'}{'override'} to true, via repository's
 +`gitweb.extraBranchRefs` configuration variable, which contains a
 +space separated list of refs. An example:
 ++
 +--------------------------------------------------------------------------------
 +[gitweb]
 +      extraBranchRefs = sandbox wip other
 +--------------------------------------------------------------------------------
 ++
 +The gitweb.extraBranchRefs is actually a multi-valued configuration
 +variable, so following example is also correct and the result is the
 +same as of the snippet above:
 ++
 +--------------------------------------------------------------------------------
 +[gitweb]
 +      extraBranchRefs = sandbox
 +      extraBranchRefs = wip other
 +--------------------------------------------------------------------------------
 ++
 +It is an error to specify a ref that does not pass "git check-ref-format"
 +scrutiny. Duplicated values are filtered.
 +
  
  EXAMPLES
  --------
index 248dcabd50fb1fb844eaf27090b2f7f45bb0e661,4555807b78893a28a4cf3b88c540ca28cb5dd57b..d4f980446250befbd788394598de599824630d2f
@@@ -1,5 -1,5 +1,5 @@@
  Git User Manual
 -_______________
 +===============
  
  Git is a fast distributed revision control system.
  
@@@ -3795,7 -3795,7 +3795,7 @@@ like so
  $ git update-index filename
  -------------------------------------------------
  
- but to avoid common mistakes with filename globbing etc, the command
+ but to avoid common mistakes with filename globbing etc., the command
  will not normally add totally new entries or remove old entries,
  i.e. it will normally just update existing cache entries.