Skip to content

Commit

Permalink
v1.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
candid82 committed Oct 30, 2023
1 parent 1d15436 commit 8d41539
Show file tree
Hide file tree
Showing 3 changed files with 34 additions and 2 deletions.
2 changes: 1 addition & 1 deletion core/procs.go
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ const (
PRINT_IF_NOT_NIL
)

const VERSION = "v1.3.0"
const VERSION = "v1.3.1"

const (
CLJ Dialect = iota
Expand Down
32 changes: 32 additions & 0 deletions docs/joker.git.html
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,12 @@ <h2 id="_summary">Summary</h2>
<h2 id="_index">Index</h2>
<ul class="index">
<li>
<a href="#add-commit">add-commit</a>
</li>
<li>
<a href="#add-path">add-path</a>
</li>
<li>
<a href="#commit">commit</a>
</li>
<li>
Expand Down Expand Up @@ -66,6 +72,32 @@ <h2 id="_variables">Variables</h2>
<h2 id="_functions">Functions, Macros, and Special Forms</h2>
<ul>
<li>
<h3 class="Function" id="add-commit">add-commit</h3>
<span class="var-kind Function">Function</span>
<span class="var-added">v1.4</span>
<pre class="var-usage"><div><code>(add-commit repo msg opts)</code></div>
</pre>
<p class="var-docstr">Stores the current contents of the index in a new commit along with<br>
a log message from the user describing the changes.</p>


</li>
<li>
<h3 class="Function" id="add-path">add-path</h3>
<span class="var-kind Function">Function</span>
<span class="var-added">v1.4</span>
<pre class="var-usage"><div><code>(add-path repo path)</code></div>
</pre>
<p class="var-docstr">Adds the file contents of a file in the worktree to the index. If the<br>
file is already staged in the index no error is thrown. If a file deleted<br>
from the workspace is given, the file is removed from the index. If a<br>
directory given, adds the files and all his sub-directories recursively in<br>
the worktree to the index. If any of the files is already staged in the index<br>
no error is thrown. When path is a file, the hash is returned.</p>


</li>
<li>
<h3 class="Function" id="commit">commit</h3>
<span class="var-kind Function">Function</span>
<span class="var-added">v1.3</span>
Expand Down
Loading

0 comments on commit 8d41539

Please sign in to comment.