diff --git a/hive-forge/src/verbs/repo_create.rs b/hive-forge/src/verbs/repo_create.rs index 9ce580e8..2419228b 100644 --- a/hive-forge/src/verbs/repo_create.rs +++ b/hive-forge/src/verbs/repo_create.rs @@ -27,12 +27,10 @@ pub struct Args { /// Create the repo as private (default: public). #[arg(long)] private: bool, - /// Default branch name (e.g. `main`). Forgejo applies it to the - /// initial commit, so it only takes effect alongside `--auto-init`. + /// Default branch name (e.g. `main`). Only takes effect with `--auto-init`. #[arg(long = "default-branch")] default_branch: Option, - /// Create under this organisation (`POST /orgs//repos`) instead - /// of the authenticated user's namespace. + /// Create under this organisation instead of your own namespace. #[arg(long)] org: Option, /// Seed an initial commit (README) so the repo is non-empty and can