arashi 1.4.0 → 1.5.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +41 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -4,16 +4,56 @@
|
|
|
4
4
|
[](https://github.com/corwinm/arashi/actions/workflows/ci.yml)
|
|
5
5
|
[](https://github.com/corwinm/arashi/blob/main/LICENSE)
|
|
6
6
|
|
|
7
|
-
Arashi is a Git worktree manager for meta-repositories.
|
|
7
|
+
Arashi is a Git worktree manager for meta-repositories.
|
|
8
|
+
|
|
9
|
+
It keeps related repositories aligned while you work on a feature branch across a shared workspace.
|
|
8
10
|
|
|
9
11
|
[Documentation](https://arashi.haphazard.dev)
|
|
10
12
|
|
|
11
13
|
## Installation
|
|
12
14
|
|
|
15
|
+
### Option 1: Install with curl (official direct install)
|
|
16
|
+
|
|
17
|
+
Prerequisites:
|
|
18
|
+
|
|
19
|
+
- `curl`
|
|
20
|
+
- `bash`
|
|
21
|
+
- A SHA-256 tool (`shasum`, `sha256sum`, or `openssl`)
|
|
22
|
+
|
|
23
|
+
```bash
|
|
24
|
+
curl -fsSL https://arashi.haphazard.dev/install | bash
|
|
25
|
+
```
|
|
26
|
+
|
|
27
|
+
Install a specific release:
|
|
28
|
+
|
|
29
|
+
```bash
|
|
30
|
+
curl -fsSL https://arashi.haphazard.dev/install | ARASHI_VERSION=1.4.0 bash
|
|
31
|
+
```
|
|
32
|
+
|
|
33
|
+
Verify install:
|
|
34
|
+
|
|
35
|
+
```bash
|
|
36
|
+
arashi --version
|
|
37
|
+
```
|
|
38
|
+
|
|
39
|
+
By default, the installer places `arashi` in `~/.arashi/bin` and adds that path to your shell config.
|
|
40
|
+
|
|
41
|
+
If curl installation fails, use npm installation below or the manual release instructions in [`docs/INSTALLATION.md`](./docs/INSTALLATION.md).
|
|
42
|
+
|
|
43
|
+
### Option 2: Install with npm
|
|
44
|
+
|
|
13
45
|
```bash
|
|
14
46
|
npm install -g arashi
|
|
15
47
|
```
|
|
16
48
|
|
|
49
|
+
Verify install:
|
|
50
|
+
|
|
51
|
+
```bash
|
|
52
|
+
arashi --version
|
|
53
|
+
```
|
|
54
|
+
|
|
55
|
+
If npm is unavailable or fails, use the curl installer command above or the manual release instructions in [`docs/INSTALLATION.md`](./docs/INSTALLATION.md).
|
|
56
|
+
|
|
17
57
|
### Manual install from GitHub Releases
|
|
18
58
|
|
|
19
59
|
If you prefer not to use npm, download a platform binary from [GitHub Releases](https://github.com/corwinm/arashi/releases) and place it on your `PATH`.
|