-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #149 from kinode-dao/hf/kit-add-reset-cache
kit: add reset-cache
- Loading branch information
Showing
12 changed files
with
56 additions
and
32 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,15 @@ | ||
# kit | ||
|
||
`kit` is a tool**kit** that make development on Kinode OS ergonomic. | ||
`kit` is a tool**kit** to make development on Kinode OS ergonomic. | ||
|
||
## Table of Contents | ||
|
||
* [Install](./install.md) | ||
* [`kit boot-fake-node`](./boot-fake-node.md) | ||
* [`kit new`](./new.md) | ||
* [`kit build`](./build.md) | ||
* [`kit start-package`](./start-package.md) | ||
* [`kit dev-ui`](./dev-ui.md) | ||
* [`kit inject-message`](./inject-message.md) | ||
* [`kit run-tests`](./run-tests.md) | ||
* [Installation](./kit/install.md) | ||
* [`kit boot-fake-node`](./kit/boot-fake-node.md) | ||
* [`kit new`](./kit/new.md) | ||
* [`kit build`](./kit/build.md) | ||
* [`kit start-package`](./kit/start-package.md) | ||
* [`kit remove-package`](./kit/start-package.md) | ||
* [`kit dev-ui`](./kit/dev-ui.md) | ||
* [`kit inject-message`](./kit/inject-message.md) | ||
* [`kit reset-cache`](./kit/reset-cache.md) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
# `kit reset-cache` | ||
|
||
`kit reset-cache` resets the cache `kit` writes Kinode core binaries, logs, etc. to. | ||
|
||
## Discussion | ||
|
||
In general, `kit reset-cache` should not need to be used. | ||
There are occasionally cases where the `kit` cache gets corrupted. | ||
If seeing confusing and difficult to explain behavior from `kit`, a `kit reset-cache` won't hurt. | ||
|
||
## Arguments | ||
|
||
``` | ||
$ kit reset-cache --help | ||
Reset kit cache (Kinode core binaries, logs, etc.) | ||
Usage: kit reset-cache | ||
Options: | ||
-h, --help Print help | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters