1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
- --
```bash
git clone https://github.com/celestia-island/noa.git
cd noa
just init # 依存関係を取得
just build-dev # 開発ビルド
```
`noa`バイナリは`target/debug/noa`にあります。
```bash
noa init .
noa status
noa workspace create feature-1
noa workspace switch feature-1
noa snapshot create -m "initial work"
noa log
noa workspace switch default
noa workspace merge feature-1
noa remote add origin https://github.com/example/repo.git
noa remote list
```
```bash
python3 examples/run_all.py
```
```bash
just fmt # コードのフォーマット
just clippy # lint
just test # テストの実行
just check # 型チェック
```