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

Deployed 6c41b1b to prerelease with MkDocs 1.6.0 and mike 2.1.1

This commit is contained in:
jj-docs[bot] 2024-08-01 16:04:40 +00:00
parent 3d3b5da0ac
commit e12d17b0e9
2 changed files with 46 additions and 1 deletions

View file

@ -789,6 +789,15 @@
</span>
</a>
</li>
<li class="md-nav__item">
<a href="#date-patterns" class="md-nav__link">
<span class="md-ellipsis">
Date patterns
</span>
</a>
</li>
<li class="md-nav__item">
@ -1470,6 +1479,15 @@
</span>
</a>
</li>
<li class="md-nav__item">
<a href="#date-patterns" class="md-nav__link">
<span class="md-ellipsis">
Date patterns
</span>
</a>
</li>
<li class="md-nav__item">
@ -1802,6 +1820,14 @@ aren't included in <code>remote_branches()</code>.</p>
given <a href="#string-patterns">string pattern</a>.</p>
</li>
<li>
<p><code>author_date(pattern)</code>: Commits with author dates matching the specified <a href="#date-patterns">date
pattern</a>.</p>
</li>
<li>
<p><code>committer_date(pattern)</code>: Commits with committer dates matching the specified
<a href="#date-patterns">date pattern</a>.</p>
</li>
<li>
<p><code>empty()</code>: Commits modifying no files. This also includes <code>merges()</code> without
user modifications and <code>root()</code>.</p>
</li>
@ -1894,6 +1920,25 @@ o root()
</ul>
<p>You can append <code>-i</code> after the kind to match caseinsensitively (e.g.
<code>glob-i:"fix*jpeg*"</code>).</p>
<h2 id="date-patterns">Date patterns<a class="headerlink" href="#date-patterns" title="Permanent link">&para;</a></h2>
<p>Functions that perform date matching support the following pattern syntax:</p>
<ul>
<li><code>after:"string"</code>: Matches dates exactly at or after the given date.</li>
<li><code>before:"string"</code>: Matches dates before, but not including, the given date.</li>
</ul>
<p>Date strings can be specified in several forms, including:</p>
<ul>
<li>2024-02-01</li>
<li>2024-02-01T12:00:00</li>
<li>2024-02-01T12:00:00-08:00</li>
<li>2024-02-01 12:00:00</li>
<li>2 days ago</li>
<li>5 minutes ago</li>
<li>yesterday</li>
<li>yesterday 5pm</li>
<li>yesterday 10:30</li>
<li>yesterday 15:30</li>
</ul>
<h2 id="aliases">Aliases<a class="headerlink" href="#aliases" title="Permanent link">&para;</a></h2>
<p>New symbols and functions can be defined in the config file, by using any
combination of the predefined symbols/functions and other aliases.</p>

File diff suppressed because one or more lines are too long