From 03f8bc8a6ae6cb91f5b47aed80952b6a3a3f8e07 Mon Sep 17 00:00:00 2001 From: atlas Date: Thu, 23 Jul 2026 22:54:15 +0200 Subject: [PATCH] docs(#2671): trim per-verb arg help (repo-create) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Drop the API path from --org and the "Forgejo applies it to the initial commit" mechanics from --default-branch (kept the user-facing caveat: only takes effect with --auto-init). Swept the remaining verbs (attachment-get, pr-reviews, attach, repo-add-collaborator, comment, clone, pr-cmd router, …) — already user-relevant, no changes needed. --- hive-forge/src/verbs/repo_create.rs | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) 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