summaryrefslogtreecommitdiffstats
path: root/git-remote.html
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2020-10-09 08:51:15 -0700
committerJunio C Hamano <gitster@pobox.com>2020-10-09 08:51:15 -0700
commitcba446b53c831f145fb509f888532e6009409ab8 (patch)
tree527af8759d9ea0c676dec1d45f85fc300b3e146e /git-remote.html
parentd12815176f71c07e3844623f2c9c1ffc75a44574 (diff)
downloadgit-htmldocs-cba446b53c831f145fb509f888532e6009409ab8.tar.gz
Autogenerated HTML docs for v2.29.0-rc1
Diffstat (limited to 'git-remote.html')
-rw-r--r--git-remote.html22
1 files changed, 11 insertions, 11 deletions
diff --git a/git-remote.html b/git-remote.html
index a750b5ce9..4ac27b926 100644
--- a/git-remote.html
+++ b/git-remote.html
@@ -750,7 +750,7 @@ git-remote(1) Manual Page
<div class="sectionbody">
<div class="verseblock">
<pre class="content"><em>git remote</em> [-v | --verbose]
-<em>git remote add</em> [-t &lt;branch&gt;] [-m &lt;master&gt;] [-f] [--[no-]tags] [--mirror=&lt;fetch|push&gt;] &lt;name&gt; &lt;url&gt;
+<em>git remote add</em> [-t &lt;branch&gt;] [-m &lt;master&gt;] [-f] [--[no-]tags] [--mirror=(fetch|push)] &lt;name&gt; &lt;url&gt;
<em>git remote rename</em> &lt;old&gt; &lt;new&gt;
<em>git remote remove</em> &lt;name&gt;
<em>git remote set-head</em> &lt;name&gt; (-a | --auto | -d | --delete | &lt;branch&gt;)
@@ -785,7 +785,7 @@ git-remote(1) Manual Page
<dd>
<p>
Be a little more verbose and show remote url after name.
- NOTE: This must be placed between <code>remote</code> and <code>subcommand</code>.
+ NOTE: This must be placed between <code>remote</code> and subcommand.
</p>
</dd>
</dl></div>
@@ -802,7 +802,7 @@ subcommands are available to perform operations on the remotes.</p></div>
</dt>
<dd>
<p>
-Adds a remote named &lt;name&gt; for the repository at
+Add a remote named &lt;name&gt; for the repository at
&lt;url&gt;. The command <code>git fetch &lt;name&gt;</code> can then be used to create and
update remote-tracking branches &lt;name&gt;/&lt;branch&gt;.
</p>
@@ -869,12 +869,12 @@ specify <code>origin/master</code>.
<div class="paragraph"><p>With <code>-d</code> or <code>--delete</code>, the symbolic ref <code>refs/remotes/&lt;name&gt;/HEAD</code> is deleted.</p></div>
<div class="paragraph"><p>With <code>-a</code> or <code>--auto</code>, the remote is queried to determine its <code>HEAD</code>, then the
symbolic-ref <code>refs/remotes/&lt;name&gt;/HEAD</code> is set to the same branch. e.g., if the remote
-<code>HEAD</code> is pointed at <code>next</code>, "<code>git remote set-head origin -a</code>" will set
+<code>HEAD</code> is pointed at <code>next</code>, <code>git remote set-head origin -a</code> will set
the symbolic-ref <code>refs/remotes/origin/HEAD</code> to <code>refs/remotes/origin/next</code>. This will
only work if <code>refs/remotes/origin/next</code> already exists; if not it must be
fetched first.</p></div>
-<div class="paragraph"><p>Use <code>&lt;branch&gt;</code> to set the symbolic-ref <code>refs/remotes/&lt;name&gt;/HEAD</code> explicitly. e.g., "git
-remote set-head origin master" will set the symbolic-ref <code>refs/remotes/origin/HEAD</code> to
+<div class="paragraph"><p>Use <code>&lt;branch&gt;</code> to set the symbolic-ref <code>refs/remotes/&lt;name&gt;/HEAD</code> explicitly. e.g., <code>git
+remote set-head origin master</code> will set the symbolic-ref <code>refs/remotes/origin/HEAD</code> to
<code>refs/remotes/origin/master</code>. This will only work if
<code>refs/remotes/origin/master</code> already exists; if not it must be fetched first.</p></div>
</dd>
@@ -888,7 +888,7 @@ This can be used to track a subset of the available remote branches
after the initial setup for a remote.
</p>
<div class="paragraph"><p>The named branches will be interpreted as if specified with the
-<code>-t</code> option on the <em>git remote add</em> command line.</p></div>
+<code>-t</code> option on the <code>git remote add</code> command line.</p></div>
<div class="paragraph"><p>With <code>--add</code>, instead of replacing the list of currently tracked
branches, adds to that list.</p></div>
</dd>
@@ -947,7 +947,7 @@ fetch --prune &lt;name&gt;</code>, except that no new references will be fetched
</p>
<div class="paragraph"><p>See the PRUNING section of <a href="git-fetch.html">git-fetch(1)</a> for what it&#8217;ll prune
depending on various configuration.</p></div>
-<div class="paragraph"><p>With <code>--dry-run</code> option, report what branches will be pruned, but do not
+<div class="paragraph"><p>With <code>--dry-run</code> option, report what branches would be pruned, but do not
actually prune them.</p></div>
</dd>
<dt class="hdlist1">
@@ -956,10 +956,10 @@ actually prune them.</p></div>
<dd>
<p>
Fetch updates for remotes or remote groups in the repository as defined by
-remotes.&lt;group&gt;. If neither group nor remote is specified on the command line,
+<code>remotes.&lt;group&gt;</code>. If neither group nor remote is specified on the command line,
the configuration parameter remotes.default will be used; if
remotes.default is not defined, all remotes which do not have the
-configuration parameter remote.&lt;name&gt;.skipDefaultUpdate set to true will
+configuration parameter <code>remote.&lt;name&gt;.skipDefaultUpdate</code> set to true will
be updated. (See <a href="git-config.html">git-config(1)</a>).
</p>
<div class="paragraph"><p>With <code>--prune</code> option, run pruning against all the remotes that are updated.</p></div>
@@ -1045,7 +1045,7 @@ $ git merge origin</code></pre>
<div id="footer">
<div id="footer-text">
Last updated
- 2020-03-10 08:03:13 PDT
+ 2020-10-09 08:47:57 PDT
</div>
</div>
</body>