Merge branch 'maint'
authorJunio C Hamano <gitster@pobox.com>
Thu, 3 Sep 2009 16:43:08 +0000 (09:43 -0700)
committerJunio C Hamano <gitster@pobox.com>
Thu, 3 Sep 2009 16:43:08 +0000 (09:43 -0700)
* maint:
git-clone: add missing comma in --reference documentation

1  2 
Documentation/git-clone.txt
index 88ea272ee5a1994edfbc93347d5841228de46f17,1709a2dbd083bf8622ea42790cecca0ec21747c1..2e0785e1de9baa689c844bde3b8f59d9c15c22fc
@@@ -12,7 -12,7 +12,7 @@@ SYNOPSI
  'git clone' [--template=<template_directory>]
          [-l] [-s] [--no-hardlinks] [-q] [-n] [--bare] [--mirror]
          [-o <name>] [-u <upload-pack>] [--reference <repository>]
 -        [--depth <depth>] [--] <repository> [<directory>]
 +        [--depth <depth>] [--recursive] [--] <repository> [<directory>]
  
  DESCRIPTION
  -----------
@@@ -84,7 -84,7 +84,7 @@@ its source repository, you can simply r
  objects from the source repository into a pack in the cloned repository.
  
  --reference <repository>::
-       If the reference repository is on the local machine
+       If the reference repository is on the local machine,
        automatically setup .git/objects/info/alternates to
        obtain objects from the reference repository.  Using
        an already existing repository as an alternate will
        with a long history, and would want to send in fixes
        as patches.
  
 +--recursive::
 +      After the clone is created, initialize all submodules within,
 +      using their default settings. This is equivalent to running
 +      'git submodule update --init --recursive' immediately after
 +      the clone is finished. This option is ignored if the cloned
 +      repository does not have a worktree/checkout (i.e. if any of
 +      `--no-checkout`/`-n`, `--bare`, or `--mirror` is given)
 +
  <repository>::
        The (possibly remote) repository to clone from.  See the
        <<URLS,URLS>> section below for more information on specifying