ok/jj
1
0
Fork 0
forked from mirrors/jj

Deployed 40bb207 to prerelease with MkDocs 1.6.0 and mike 2.1.1

This commit is contained in:
jj-docs[bot] 2024-06-25 04:02:28 +00:00
parent 87ae16d0bf
commit 5d3bdf2820
4 changed files with 5 additions and 5 deletions

View file

@ -5791,7 +5791,7 @@ does not match the <code>jj help</code> output exactly.</p>
<li><code>--color &lt;WHEN&gt;</code> — When to colorize output (always, never, debug, auto)</li>
<li>
<p><code>--quiet</code> — Silence non-primary command output</p>
<p>For example, <code>jj files</code> will still list files, but it won't tell you if the working copy was snapshotted or if descendants were rebased.</p>
<p>For example, <code>jj file list</code> will still list files, but it won't tell you if the working copy was snapshotted or if descendants were rebased.</p>
<p>Warnings and errors will still be printed.</p>
</li>
<li>
@ -6175,7 +6175,7 @@ Martin von Zweigbergk</p>
</ul>
<h2 id="jj-file-chmod"><code>jj file chmod</code><a class="headerlink" href="#jj-file-chmod" title="Permanent link">&para;</a></h2>
<p>Sets or removes the executable bit for paths in the repo</p>
<p>Unlike the POSIX <code>chmod</code>, <code>jj chmod</code> also works on Windows, on conflicted files, and on arbitrary revisions.</p>
<p>Unlike the POSIX <code>chmod</code>, <code>jj file chmod</code> also works on Windows, on conflicted files, and on arbitrary revisions.</p>
<p><strong>Usage:</strong> <code>jj file chmod [OPTIONS] &lt;MODE&gt; &lt;PATHS&gt;...</code></p>
<h6 id="arguments_18"><strong>Arguments:</strong><a class="headerlink" href="#arguments_18" title="Permanent link">&para;</a></h6>
<ul>

View file

@ -1408,7 +1408,7 @@ expressions.</p>
<div class="highlight"><pre><span></span><code>jj diff &#39;~Cargo.lock&#39;
</code></pre></div>
<p>List files in <code>src</code> excluding Rust sources.</p>
<div class="highlight"><pre><span></span><code>jj files &#39;src ~ glob:&quot;**/*.rs&quot;&#39;
<div class="highlight"><pre><span></span><code>jj file list &#39;src ~ glob:&quot;**/*.rs&quot;&#39;
</code></pre></div>
<p>Split a revision in two, putting <code>foo</code> into the second commit.</p>
<div class="highlight"><pre><span></span><code>jj split &#39;~foo&#39;

View file

@ -1538,7 +1538,7 @@ parent.</p>
</tr>
<tr>
<td>Search among files versioned in the repository</td>
<td><code>grep foo $(jj files)</code>, or <code>rg --no-require-git foo</code></td>
<td><code>grep foo $(jj file list)</code>, or <code>rg --no-require-git foo</code></td>
<td><code>git grep foo</code></td>
</tr>
<tr>

File diff suppressed because one or more lines are too long