radicle-heartwood-lfs/radicle-cli/examples/rad-init.md

34 lines
560 B
Markdown

To create your first radicle project, navigate to a git repository, and run
the `init` command:
```
$ rad init --name acme --description "Acme's repository" --no-confirm
Initializing local 🌱 project in .
ok Project acme created
{
"name": "acme",
"description": "Acme's repository",
"default-branch": "master"
}
Your project id is [..]. You can show it any time by running:
rad .
To publish your project to the network, run:
rad push
```
Projects can be listed with the `ls` command:
```
$ rad ls
acme [..] [..] Acme's repository
```