summaryrefslogtreecommitdiffstats
path: root/git-clone.html
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2024-04-09 14:47:35 -0700
committerJunio C Hamano <gitster@pobox.com>2024-04-09 14:47:35 -0700
commiteabec52c201642649f007d7ec9e9f99e2b7fb25a (patch)
tree0e50fb48fb2ea0265972a630f9f7e819f25b4630 /git-clone.html
parentfd00376c5a0146b5ede1fdaf0fbb5987081406d6 (diff)
downloadgit-htmldocs-eabec52c201642649f007d7ec9e9f99e2b7fb25a.tar.gz
Autogenerated HTML docs for v2.44.0-548-g91ec36
Diffstat (limited to 'git-clone.html')
-rw-r--r--git-clone.html181
1 files changed, 91 insertions, 90 deletions
diff --git a/git-clone.html b/git-clone.html
index 8195bf02c..8a53789d5 100644
--- a/git-clone.html
+++ b/git-clone.html
@@ -749,15 +749,15 @@ git-clone(1) Manual Page
<h2 id="_synopsis">SYNOPSIS</h2>
<div class="sectionbody">
<div class="verseblock">
-<pre class="content"><em>git clone</em> [--template=&lt;template-directory&gt;]
- [-l] [-s] [--no-hardlinks] [-q] [-n] [--bare] [--mirror]
- [-o &lt;name&gt;] [-b &lt;name&gt;] [-u &lt;upload-pack&gt;] [--reference &lt;repository&gt;]
- [--dissociate] [--separate-git-dir &lt;git-dir&gt;]
- [--depth &lt;depth&gt;] [--[no-]single-branch] [--no-tags]
- [--recurse-submodules[=&lt;pathspec&gt;]] [--[no-]shallow-submodules]
- [--[no-]remote-submodules] [--jobs &lt;n&gt;] [--sparse] [--[no-]reject-shallow]
- [--filter=&lt;filter&gt; [--also-filter-submodules]] [--] &lt;repository&gt;
- [&lt;directory&gt;]</pre>
+<pre class="content"><code>git clone</code> [<code>--template=</code><em>&lt;template-directory&gt;</em>]
+ [<code>-l</code>] [<code>-s</code>] [<code>--no-hardlinks</code>] [<code>-q</code>] [<code>-n</code>] [<code>--bare</code>] [<code>--mirror</code>]
+ [<code>-o</code> <em>&lt;name&gt;</em>] [<code>-b</code> <em>&lt;name&gt;</em>] [<code>-u</code> <em>&lt;upload-pack&gt;</em>] [<code>--reference</code> <em>&lt;repository&gt;</em>]
+ [<code>--dissociate</code>] [<code>--separate-git-dir</code> <em>&lt;git-dir&gt;</em>]
+ [<code>--depth</code> <em>&lt;depth&gt;</em>] [<code>--</code>[<code>no-</code>]<code>single-branch</code>] [<code>--no-tags</code>]
+ [<code>--recurse-submodules</code>[<code>=</code><em>&lt;pathspec&gt;</em>]] [<code>--</code>[<code>no-</code>]<code>shallow-submodules</code>]
+ [<code>--</code>[<code>no-</code>]<code>remote-submodules</code>] [<code>--jobs</code> <em>&lt;n&gt;</em>] [<code>--sparse</code>] [<code>--</code>[<code>no-</code>]<code>reject-shallow</code>]
+ [<code>--filter=</code><em>&lt;filter-spec&gt;</em>] [<code>--also-filter-submodules</code>]] [<code>--</code>] <em>&lt;repository&gt;</em>
+ [<em>&lt;directory&gt;</em>]</pre>
<div class="attribution">
</div></div>
</div>
@@ -773,7 +773,7 @@ currently active branch.</p></div>
<div class="paragraph"><p>After the clone, a plain <code>git fetch</code> without arguments will update
all the remote-tracking branches, and a <code>git pull</code> without
arguments will in addition merge the remote master branch into the
-current master branch, if any (this is untrue when "--single-branch"
+current master branch, if any (this is untrue when <code>--single-branch</code>
is given; see below).</p></div>
<div class="paragraph"><p>This default configuration is achieved by creating references to
the remote branch heads under <code>refs/remotes/origin</code> and
@@ -786,17 +786,17 @@ configuration variables.</p></div>
<div class="sectionbody">
<div class="dlist"><dl>
<dt class="hdlist1">
--l
+<code>-l</code>
</dt>
<dt class="hdlist1">
---local
+<code>--local</code>
</dt>
<dd>
<p>
When the repository to clone from is on a local machine,
this flag bypasses the normal "Git aware" transport
mechanism and clones the repository by making a copy of
- HEAD and everything under objects and refs directories.
+ <code>HEAD</code> and everything under objects and refs directories.
The files under <code>.git/objects/</code> directory are hardlinked
to save space when possible.
</p>
@@ -815,7 +815,7 @@ source repository, similar to running <code>cp -r src dst</code> while modifying
<code>src</code>.</p></div>
</dd>
<dt class="hdlist1">
---no-hardlinks
+<code>--no-hardlinks</code>
</dt>
<dd>
<p>
@@ -826,10 +826,10 @@ source repository, similar to running <code>cp -r src dst</code> while modifying
</p>
</dd>
<dt class="hdlist1">
--s
+<code>-s</code>
</dt>
<dt class="hdlist1">
---shared
+<code>--shared</code>
</dt>
<dd>
<p>
@@ -858,7 +858,7 @@ its source repository, you can simply run <code>git repack -a</code> to copy all
objects from the source repository into a pack in the cloned repository.</p></div>
</dd>
<dt class="hdlist1">
---reference[-if-able] &lt;repository&gt;
+<code>--reference</code>[<code>-if-able</code>] <em>&lt;repository&gt;</em>
</dt>
<dd>
<p>
@@ -876,7 +876,7 @@ objects from the source repository into a pack in the cloned repository.</p></di
<code>--dissociate</code> option.</p></div>
</dd>
<dt class="hdlist1">
---dissociate
+<code>--dissociate</code>
</dt>
<dd>
<p>
@@ -892,10 +892,10 @@ objects from the source repository into a pack in the cloned repository.</p></di
</p>
</dd>
<dt class="hdlist1">
--q
+<code>-q</code>
</dt>
<dt class="hdlist1">
---quiet
+<code>--quiet</code>
</dt>
<dd>
<p>
@@ -904,10 +904,10 @@ objects from the source repository into a pack in the cloned repository.</p></di
</p>
</dd>
<dt class="hdlist1">
--v
+<code>-v</code>
</dt>
<dt class="hdlist1">
---verbose
+<code>--verbose</code>
</dt>
<dd>
<p>
@@ -916,7 +916,7 @@ objects from the source repository into a pack in the cloned repository.</p></di
</p>
</dd>
<dt class="hdlist1">
---progress
+<code>--progress</code>
</dt>
<dd>
<p>
@@ -927,7 +927,7 @@ objects from the source repository into a pack in the cloned repository.</p></di
</p>
</dd>
<dt class="hdlist1">
---server-option=&lt;option&gt;
+<code>--server-option=</code><em>&lt;option&gt;</em>
</dt>
<dd>
<p>
@@ -935,15 +935,15 @@ objects from the source repository into a pack in the cloned repository.</p></di
protocol version 2. The given string must not contain a NUL or LF
character. The server&#8217;s handling of server options, including
unknown ones, is server-specific.
- When multiple <code>--server-option=&lt;option&gt;</code> are given, they are all
+ When multiple <code>--server-option=</code><em>&lt;option&gt;</em> are given, they are all
sent to the other side in the order listed on the command line.
</p>
</dd>
<dt class="hdlist1">
--n
+<code>-n</code>
</dt>
<dt class="hdlist1">
---no-checkout
+<code>--no-checkout</code>
</dt>
<dd>
<p>
@@ -951,7 +951,7 @@ objects from the source repository into a pack in the cloned repository.</p></di
</p>
</dd>
<dt class="hdlist1">
---[no-]reject-shallow
+<code>--</code>[<code>no-</code>]<code>reject-shallow</code>
</dt>
<dd>
<p>
@@ -961,13 +961,13 @@ objects from the source repository into a pack in the cloned repository.</p></di
</p>
</dd>
<dt class="hdlist1">
---bare
+<code>--bare</code>
</dt>
<dd>
<p>
Make a <em>bare</em> Git repository. That is, instead of
creating <em>&lt;directory&gt;</em> and placing the administrative
- files in <code>&lt;directory&gt;/.git</code>, make the <em>&lt;directory&gt;</em>
+ files in <em>&lt;directory&gt;</em><code>/.git</code>, make the <em>&lt;directory&gt;</em>
itself the <code>$GIT_DIR</code>. This obviously implies the <code>--no-checkout</code>
because there is nowhere to check out the working tree.
Also the branch heads at the remote are copied directly
@@ -978,7 +978,7 @@ objects from the source repository into a pack in the cloned repository.</p></di
</p>
</dd>
<dt class="hdlist1">
---sparse
+<code>--sparse</code>
</dt>
<dd>
<p>
@@ -989,7 +989,7 @@ objects from the source repository into a pack in the cloned repository.</p></di
</p>
</dd>
<dt class="hdlist1">
---filter=&lt;filter-spec&gt;
+<code>--filter=</code><em>&lt;filter-spec&gt;</em>
</dt>
<dd>
<p>
@@ -998,13 +998,13 @@ objects from the source repository into a pack in the cloned repository.</p></di
When using <code>--filter</code>, the supplied <em>&lt;filter-spec&gt;</em> is used for
the partial clone filter. For example, <code>--filter=blob:none</code> will
filter out all blobs (file contents) until needed by Git. Also,
- <code>--filter=blob:limit=&lt;size&gt;</code> will filter out all blobs of size
+ <code>--filter=blob:limit=</code><em>&lt;size&gt;</em> will filter out all blobs of size
at least <em>&lt;size&gt;</em>. For more details on filter specifications, see
the <code>--filter</code> option in <a href="git-rev-list.html">git-rev-list(1)</a>.
</p>
</dd>
<dt class="hdlist1">
---also-filter-submodules
+<code>--also-filter-submodules</code>
</dt>
<dd>
<p>
@@ -1014,7 +1014,7 @@ objects from the source repository into a pack in the cloned repository.</p></di
</p>
</dd>
<dt class="hdlist1">
---mirror
+<code>--mirror</code>
</dt>
<dd>
<p>
@@ -1027,10 +1027,10 @@ objects from the source repository into a pack in the cloned repository.</p></di
</p>
</dd>
<dt class="hdlist1">
--o &lt;name&gt;
+<code>-o</code> <em>&lt;name&gt;</em>
</dt>
<dt class="hdlist1">
---origin &lt;name&gt;
+<code>--origin</code> <em>&lt;name&gt;</em>
</dt>
<dd>
<p>
@@ -1040,10 +1040,10 @@ objects from the source repository into a pack in the cloned repository.</p></di
</p>
</dd>
<dt class="hdlist1">
--b &lt;name&gt;
+<code>-b</code> <em>&lt;name&gt;</em>
</dt>
<dt class="hdlist1">
---branch &lt;name&gt;
+<code>--branch</code> <em>&lt;name&gt;</em>
</dt>
<dd>
<p>
@@ -1056,10 +1056,10 @@ objects from the source repository into a pack in the cloned repository.</p></di
</p>
</dd>
<dt class="hdlist1">
--u &lt;upload-pack&gt;
+<code>-u</code> <em>&lt;upload-pack&gt;</em>
</dt>
<dt class="hdlist1">
---upload-pack &lt;upload-pack&gt;
+<code>--upload-pack</code> <em>&lt;upload-pack&gt;</em>
</dt>
<dd>
<p>
@@ -1069,7 +1069,7 @@ objects from the source repository into a pack in the cloned repository.</p></di
</p>
</dd>
<dt class="hdlist1">
---template=&lt;template-directory&gt;
+<code>--template=</code><em>&lt;template-directory&gt;</em>
</dt>
<dd>
<p>
@@ -1078,10 +1078,10 @@ objects from the source repository into a pack in the cloned repository.</p></di
</p>
</dd>
<dt class="hdlist1">
--c &lt;key&gt;=&lt;value&gt;
+<code>-c</code> <em>&lt;key&gt;</em><code>=</code><em>&lt;value&gt;</em>
</dt>
<dt class="hdlist1">
---config &lt;key&gt;=&lt;value&gt;
+<code>--config</code> <em>&lt;key&gt;</em><code>=</code><em>&lt;value&gt;</em>
</dt>
<dd>
<p>
@@ -1097,11 +1097,11 @@ objects from the source repository into a pack in the cloned repository.</p></di
<div class="paragraph"><p>Due to limitations of the current implementation, some configuration
variables do not take effect until after the initial fetch and checkout.
Configuration variables known to not take effect are:
-<code>remote.&lt;name&gt;.mirror</code> and <code>remote.&lt;name&gt;.tagOpt</code>. Use the
+<code>remote.</code><em>&lt;name&gt;</em><code>.mirror</code> and <code>remote.</code><em>&lt;name&gt;</em><code>.tagOpt</code>. Use the
corresponding <code>--mirror</code> and <code>--no-tags</code> options instead.</p></div>
</dd>
<dt class="hdlist1">
---depth &lt;depth&gt;
+<code>--depth</code> <em>&lt;depth&gt;</em>
</dt>
<dd>
<p>
@@ -1113,7 +1113,7 @@ corresponding <code>--mirror</code> and <code>--no-tags</code> options instead.<
</p>
</dd>
<dt class="hdlist1">
---shallow-since=&lt;date&gt;
+<code>--shallow-since=</code><em>&lt;date&gt;</em>
</dt>
<dd>
<p>
@@ -1121,7 +1121,7 @@ corresponding <code>--mirror</code> and <code>--no-tags</code> options instead.<
</p>
</dd>
<dt class="hdlist1">
---shallow-exclude=&lt;revision&gt;
+<code>--shallow-exclude=</code><em>&lt;revision&gt;</em>
</dt>
<dd>
<p>
@@ -1131,7 +1131,7 @@ corresponding <code>--mirror</code> and <code>--no-tags</code> options instead.<
</p>
</dd>
<dt class="hdlist1">
---[no-]single-branch
+<code>--</code>[<code>no-</code>]<code>single-branch</code>
</dt>
<dd>
<p>
@@ -1146,7 +1146,7 @@ corresponding <code>--mirror</code> and <code>--no-tags</code> options instead.<
</p>
</dd>
<dt class="hdlist1">
---no-tags
+<code>--no-tags</code>
</dt>
<dd>
<p>
@@ -1162,7 +1162,7 @@ branch. This is useful e.g. to maintain minimal clones of the default
branch of some repository for search indexing.</p></div>
</dd>
<dt class="hdlist1">
---recurse-submodules[=&lt;pathspec&gt;]
+<code>--recurse-submodules</code>[<code>=</code><em>&lt;pathspec&gt;</em>]
</dt>
<dd>
<p>
@@ -1182,7 +1182,7 @@ not have a worktree/checkout (i.e. if any of <code>--no-checkout</code>/<code>-n
or <code>--mirror</code> is given)</p></div>
</dd>
<dt class="hdlist1">
---[no-]shallow-submodules
+<code>--</code>[<code>no-</code>]<code>shallow-submodules</code>
</dt>
<dd>
<p>
@@ -1190,7 +1190,7 @@ or <code>--mirror</code> is given)</p></div>
</p>
</dd>
<dt class="hdlist1">
---[no-]remote-submodules
+<code>--</code>[<code>no-</code>]<code>remote-submodules</code>
</dt>
<dd>
<p>
@@ -1201,7 +1201,7 @@ or <code>--mirror</code> is given)</p></div>
</p>
</dd>
<dt class="hdlist1">
---separate-git-dir=&lt;git-dir&gt;
+<code>--separate-git-dir=</code><em>&lt;git-dir&gt;</em>
</dt>
<dd>
<p>
@@ -1213,7 +1213,7 @@ or <code>--mirror</code> is given)</p></div>
</p>
</dd>
<dt class="hdlist1">
---ref-format=&lt;ref-format&gt;
+<code>--ref-format=</code><em>&lt;ref-format&gt;</em>
</dt>
<dd>
<p>
@@ -1234,10 +1234,10 @@ Specify the given ref storage format for the repository. The valid values are:
</ul></div>
</dd>
<dt class="hdlist1">
--j &lt;n&gt;
+<code>-j</code> <em>&lt;n&gt;</em>
</dt>
<dt class="hdlist1">
---jobs &lt;n&gt;
+<code>--jobs</code> <em>&lt;n&gt;</em>
</dt>
<dd>
<p>
@@ -1246,7 +1246,7 @@ Specify the given ref storage format for the repository. The valid values are:
</p>
</dd>
<dt class="hdlist1">
-&lt;repository&gt;
+<em>&lt;repository&gt;</em>
</dt>
<dd>
<p>
@@ -1256,7 +1256,7 @@ Specify the given ref storage format for the repository. The valid values are:
</p>
</dd>
<dt class="hdlist1">
-&lt;directory&gt;
+<em>&lt;directory&gt;</em>
</dt>
<dd>
<p>
@@ -1268,7 +1268,7 @@ Specify the given ref storage format for the repository. The valid values are:
</p>
</dd>
<dt class="hdlist1">
---bundle-uri=&lt;uri&gt;
+<code>--bundle-uri=</code><em>&lt;uri&gt;</em>
</dt>
<dd>
<p>
@@ -1298,22 +1298,22 @@ should be used with caution on unsecured networks.</p></div>
<div class="ulist"><ul>
<li>
<p>
-ssh://&#91;user@&#93;host.xz&#91;:port&#93;/path/to/repo.git/
+<code>ssh://</code>&#91;<em>&lt;user&gt;</em><code>@</code>&#93;<em>&lt;host&gt;</em>&#91;<code>:</code><em>&lt;port&gt;</em>&#93;<code>/</code><em>&lt;path-to-git-repo&gt;</em>
</p>
</li>
<li>
<p>
-git://host.xz&#91;:port&#93;/path/to/repo.git/
+<code>git://</code><em>&lt;host&gt;</em>&#91;:<em>&lt;port&gt;</em>&#93;<code>/</code><em>&lt;path-to-git-repo&gt;</em>
</p>
</li>
<li>
<p>
-http&#91;s&#93;://host.xz&#91;:port&#93;/path/to/repo.git/
+<code>http</code>&#91;<code>s</code>&#93;<code>://</code><em>&lt;host&gt;</em>&#91;<code>:</code><em>&lt;port&gt;</em>&#93;<code>/</code><em>&lt;path-to-git-repo&gt;</em>
</p>
</li>
<li>
<p>
-ftp&#91;s&#93;://host.xz&#91;:port&#93;/path/to/repo.git/
+<code>ftp</code>&#91;<code>s</code>&#93;<code>://</code><em>&lt;host&gt;</em>&#91;<code>:</code><em>&lt;port&gt;</em>&#93;<code>/</code><em>&lt;path-to-git-repo&gt;</em>
</p>
</li>
</ul></div>
@@ -1321,7 +1321,7 @@ ftp&#91;s&#93;://host.xz&#91;:port&#93;/path/to/repo.git/
<div class="ulist"><ul>
<li>
<p>
-&#91;user@&#93;host.xz:path/to/repo.git/
+&#91;<em>&lt;user&gt;</em><code>@</code>&#93;<em>&lt;host&gt;</em><code>:/</code><em>&lt;path-to-git-repo&gt;</em>
</p>
</li>
</ul></div>
@@ -1330,21 +1330,21 @@ first colon. This helps differentiate a local path that contains a
colon. For example the local path <code>foo:bar</code> could be specified as an
absolute path or <code>./foo:bar</code> to avoid being misinterpreted as an ssh
url.</p></div>
-<div class="paragraph"><p>The ssh and git protocols additionally support ~username expansion:</p></div>
+<div class="paragraph"><p>The ssh and git protocols additionally support <code>~</code><em>&lt;username&gt;</em> expansion:</p></div>
<div class="ulist"><ul>
<li>
<p>
-ssh://&#91;user@&#93;host.xz&#91;:port&#93;/~&#91;user&#93;/path/to/repo.git/
+<code>ssh://</code>&#91;<em>&lt;user&gt;</em><code>@</code>&#93;<em>&lt;host&gt;</em>&#91;<code>:</code><em>&lt;port&gt;</em>&#93;<code>/~</code><em>&lt;user&gt;</em><code>/</code><em>&lt;path-to-git-repo&gt;</em>
</p>
</li>
<li>
<p>
-git://host.xz&#91;:port&#93;/~&#91;user&#93;/path/to/repo.git/
+<code>git://</code><em>&lt;host&gt;</em>&#91;<code>:</code><em>&lt;port&gt;</em>&#93;<code>/~</code><em>&lt;user&gt;</em><code>/</code><em>&lt;path-to-git-repo&gt;</em>
</p>
</li>
<li>
<p>
-&#91;user@&#93;host.xz:/~&#91;user&#93;/path/to/repo.git/
+&#91;<em>&lt;user&gt;</em><code>@</code>&#93;<em>&lt;host&gt;</em><code>:~</code><em>&lt;user&gt;</em><code>/</code><em>&lt;path-to-git-repo&gt;</em>
</p>
</li>
</ul></div>
@@ -1353,12 +1353,12 @@ syntaxes may be used:</p></div>
<div class="ulist"><ul>
<li>
<p>
-/path/to/repo.git/
+<code>/path/to/repo.git/</code>
</p>
</li>
<li>
<p>
-file:///path/to/repo.git/
+<code>file:///path/to/repo.git/</code>
</p>
</li>
</ul></div>
@@ -1367,13 +1367,13 @@ file:///path/to/repo.git/
<div class="paragraph"><p><code>git clone</code>, <code>git fetch</code> and <code>git pull</code>, but not <code>git push</code>, will also
accept a suitable bundle file. See <a href="git-bundle.html">git-bundle(1)</a>.</p></div>
<div class="paragraph"><p>When Git doesn&#8217;t know how to handle a certain transport protocol, it
-attempts to use the <code>remote-&lt;transport&gt;</code> remote helper, if one
+attempts to use the <code>remote-</code><em>&lt;transport&gt;</em> remote helper, if one
exists. To explicitly request a remote helper, the following syntax
may be used:</p></div>
<div class="ulist"><ul>
<li>
<p>
-<em>&lt;transport&gt;</em>::_&lt;address&gt;_
+<em>&lt;transport&gt;</em>::<em>&lt;address&gt;</em>
</p>
</li>
</ul></div>
@@ -1384,10 +1384,10 @@ invoked. See <a href="gitremote-helpers.html">gitremote-helpers(7)</a> for detai
you want to use a different format for them (such that the URLs you
use will be rewritten into URLs that work), you can create a
configuration section of the form:</p></div>
-<div class="listingblock">
-<div class="content">
-<pre><code> [url "&lt;actual-url-base&gt;"]
- insteadOf = &lt;other-url-base&gt;</code></pre>
+<div class="verseblock">
+<pre class="content"> [url "<em>&lt;actual-url-base&gt;</em>"]
+ insteadOf = <em>&lt;other-url-base&gt;</em></pre>
+<div class="attribution">
</div></div>
<div class="paragraph"><p>For example, with this:</p></div>
<div class="listingblock">
@@ -1400,10 +1400,10 @@ configuration section of the form:</p></div>
rewritten in any context that takes a URL to be "git://git.host.xz/repo.git".</p></div>
<div class="paragraph"><p>If you want to rewrite URLs for push only, you can create a
configuration section of the form:</p></div>
-<div class="listingblock">
-<div class="content">
-<pre><code> [url "&lt;actual-url-base&gt;"]
- pushInsteadOf = &lt;other-url-base&gt;</code></pre>
+<div class="verseblock">
+<pre class="content"> [url "<em>&lt;actual-url-base&gt;</em>"]
+ pushInsteadOf = <em>&lt;other-url-base&gt;</em></pre>
+<div class="attribution">
</div></div>
<div class="paragraph"><p>For example, with this:</p></div>
<div class="listingblock">
@@ -1474,7 +1474,7 @@ from the <a href="git-config.html">git-config(1)</a> documentation. The content
as what&#8217;s found there:</p></div>
<div class="dlist"><dl>
<dt class="hdlist1">
-init.templateDir
+<code>init.templateDir</code>
</dt>
<dd>
<p>
@@ -1482,7 +1482,7 @@ init.templateDir
</p>
</dd>
<dt class="hdlist1">
-init.defaultBranch
+<code>init.defaultBranch</code>
</dt>
<dd>
<p>
@@ -1491,26 +1491,27 @@ init.defaultBranch
</p>
</dd>
<dt class="hdlist1">
-clone.defaultRemoteName
+<code>clone.defaultRemoteName</code>
</dt>
<dd>
<p>
The name of the remote to create when cloning a repository. Defaults to
- <code>origin</code>, and can be overridden by passing the <code>--origin</code> command-line
- option to <a href="git-clone.html">git-clone(1)</a>.
+ <code>origin</code>.
+ It can be overridden by passing the <code>--origin</code> command-line
+ option.
</p>
</dd>
<dt class="hdlist1">
-clone.rejectShallow
+<code>clone.rejectShallow</code>
</dt>
<dd>
<p>
Reject cloning a repository if it is a shallow one; this can be overridden by
- passing the <code>--reject-shallow</code> option on the command line. See <a href="git-clone.html">git-clone(1)</a>
+ passing the <code>--reject-shallow</code> option on the command line.
</p>
</dd>
<dt class="hdlist1">
-clone.filterSubmodules
+<code>clone.filterSubmodules</code>
</dt>
<dd>
<p>
@@ -1533,7 +1534,7 @@ clone.filterSubmodules
<div id="footer">
<div id="footer-text">
Last updated
- 2024-03-21 16:28:38 PDT
+ 2024-04-09 14:45:01 PDT
</div>
</div>
</body>