Radish alpha
h
Radicle Heartwood Protocol & Stack
Radicle
Git (anonymous pull)
Log in to clone via SSH
REVIEW: Adjust arg field visibility
Erik Kundt committed 6 months ago
commit d196f720eb37ab70c67016379a46c675e711e5f7
parent 2ecebc75b5b9dc817e9953a510ab1d5e5ac2bc21
1 file changed +3 -3
modified crates/radicle-cli/src/commands/checkout/args.rs
@@ -11,13 +11,13 @@ Creates a working copy from a repository in local storage.
pub struct Args {
    /// Repository ID of the repository to checkout
    #[arg(value_name = "RID")]
-
    pub repo: RepoId,
+
    pub(super) repo: RepoId,

    /// The DID of the remote peer to checkout
    #[arg(long, value_name = "DID")]
-
    pub remote: Option<Did>,
+
    pub(super) remote: Option<Did>,

    /// Don't ask for confirmation during checkout
    #[arg(long)]
-
    pub no_confirm: bool,
+
    no_confirm: bool,
}