cli/init: Fix argument value names
This commit is contained in:
parent
634866889f
commit
28824a3127
|
|
@ -16,13 +16,13 @@ pub struct Args {
|
||||||
/// Directory to be initialized
|
/// Directory to be initialized
|
||||||
pub(super) path: Option<PathBuf>,
|
pub(super) path: Option<PathBuf>,
|
||||||
/// Name of the repository
|
/// Name of the repository
|
||||||
#[arg(long, value_name = "STRING")]
|
#[arg(long)]
|
||||||
pub(super) name: Option<ProjectName>,
|
pub(super) name: Option<ProjectName>,
|
||||||
/// Description of the repository
|
/// Description of the repository
|
||||||
#[arg(long, value_name = "STRING")]
|
#[arg(long)]
|
||||||
pub(super) description: Option<String>,
|
pub(super) description: Option<String>,
|
||||||
/// The default branch of the repository
|
/// The default branch of the repository
|
||||||
#[arg(long = "default-branch", value_name = "STRING")]
|
#[arg(long = "default-branch")]
|
||||||
pub(super) branch: Option<String>,
|
pub(super) branch: Option<String>,
|
||||||
/// Repository follow scope
|
/// Repository follow scope
|
||||||
#[arg(
|
#[arg(
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue