Deployed 7b52ff5 to prerelease with MkDocs 1.6.1 and mike 2.1.3

This commit is contained in:
jj-docs[bot] 2025-03-01 12:27:44 +00:00
parent b00f8e834e
commit e3f57f25b1
3 changed files with 7 additions and 1 deletions

View File

@ -7504,6 +7504,7 @@ output of the first tool.</p>
<li>
<p><code>--remote &lt;REMOTE&gt;</code> — The remote to fetch from (only named remotes are supported, can be repeated)</p>
<p>This defaults to the <code>git.fetch</code> setting. If that is not configured, and if there are multiple remotes, the remote named "origin" will be used.</p>
<p>By default, the specified remote names matches exactly. Use a <a href="https://jj-vcs.github.io/jj/latest/revsets#string-patterns">string pattern</a>, e.g. <code>--remote 'glob:*'</code>, to select remotes using patterns.</p>
</li>
<li>
<p><code>--all-remotes</code> — Fetch from all remotes</p>

View File

@ -3939,6 +3939,11 @@ single remote, or a list of remotes to fetch from multiple places:</p>
<div class="highlight"><pre><span></span><code>jj<span class="w"> </span>config<span class="w"> </span><span class="nb">set</span><span class="w"> </span>--repo<span class="w"> </span>git.fetch<span class="w"> </span><span class="s2">&quot;upstream&quot;</span>
jj<span class="w"> </span>config<span class="w"> </span><span class="nb">set</span><span class="w"> </span>--repo<span class="w"> </span>git.fetch<span class="w"> </span><span class="s1">&#39;[&quot;origin&quot;, &quot;upstream&quot;]&#39;</span>
</code></pre></div>
<p>By default, the specified remote names matches exactly. You can also use a
<a href="../revsets/#string-patterns">string pattern</a> to select remotes using patterns:</p>
<div class="highlight"><pre><span></span><code>jj<span class="w"> </span>config<span class="w"> </span><span class="nb">set</span><span class="w"> </span>--repo<span class="w"> </span>git.fetch<span class="w"> </span><span class="s2">&quot;glob:*&quot;</span>
jj<span class="w"> </span>config<span class="w"> </span><span class="nb">set</span><span class="w"> </span>--repo<span class="w"> </span>git.fetch<span class="w"> </span><span class="s1">&#39;[&quot;glob:remote*&quot;, &quot;glob:upstream*&quot;]&#39;</span>
</code></pre></div>
<p>Similarly, you can also set the variable <code>git.push</code> to cause <code>jj git push</code> to
push to a different remote:</p>
<div class="highlight"><pre><span></span><code>jj<span class="w"> </span>config<span class="w"> </span><span class="nb">set</span><span class="w"> </span>--repo<span class="w"> </span>git.push<span class="w"> </span><span class="s2">&quot;github&quot;</span>

File diff suppressed because one or more lines are too long