Radish alpha
h
Radicle Heartwood Protocol & Stack
Radicle
Git (anonymous pull)
Log in to clone via SSH
cli: Fix output of `rad auth`
cloudhead committed 2 years ago
commit 752656fbfa6679d5c2c5fbc6744bb57c958d29fe
parent 54aacc96197a48b79fcc260f94312d824f5e0a34
2 files changed +2 -2
modified radicle-cli/examples/rad-auth.md
@@ -14,7 +14,7 @@ Initializing your radicle 👾 identity

To create a Radicle repository, run `rad init` from a Git repository with at least one commit.
To clone a repository, run `rad clone <rid>`. For example, `rad clone rad:z3gqcJUoA1n9HaHKufZs5FCSGazv5` clones the Radicle 'heartwood' repository.
-
To get a list of all commands, run `rad help`.
+
To get a list of all commands, run `rad`.
```

You can get the above information at all times using the `self` command:
modified radicle-cli/src/commands/auth.rs
@@ -157,7 +157,7 @@ pub fn init(options: Options) -> anyhow::Result<()> {
    );
    term::info!(
        "To get a list of all commands, run {}.",
-
        term::format::command("rad help"),
+
        term::format::command("rad"),
    );

    Ok(())