hive-forge: default pr create --push remote to origin

Fresh clones only have origin, not forge. The --remote override
already covers anyone using a different name.

Closes #4538
This commit is contained in:
atlas 2026-09-19 18:16:55 +02:00
commit 18f0199566
2 changed files with 4 additions and 4 deletions

View file

@ -534,7 +534,7 @@ Create a pull request
* `--body-file <BODY_FILE>` — Read body from a file. `-` means stdin
* `--draft` — Open as draft. Ignored in `--agit` mode
* `--push` — Push the local `--head` branch to `--remote` before creating the PR
* `--remote <REMOTE>` — Remote to push to (default: `forge`, or `origin` in `--agit` mode)
* `--remote <REMOTE>` — Remote to push to (default: `origin`)
* `--agit` — Open the PR via Forgejo's `AGit` flow instead of pushing a branch — works for read-only collaborators. Run from inside a cloned repo
* `--topic <TOPIC>``AGit` topic — groups repeated pushes into one PR (re-run with the same topic to update it). Defaults to the branch name. Only meaningful with `--agit`
* `--label <LABELS>` — Label name to attach, repeatable (for example `--label area/ops --label type/bug`). Same spelling `labels add` accepts — an unresolved name errors out rather than silently attaching fewer labels than asked for. In `--agit` mode `pr create` applies this as a follow-up call once it learns the PR number (the `AGit` push itself has no label field), so it silently skips them (not a label-resolution error) if it couldn't parse the PR URL back out of the push output — same fallback as the deferred multi-line body

View file

@ -3,7 +3,7 @@
//! the PR URL.
//!
//! With `--push` the local `--head` branch is pushed to `--remote`
//! (default `forge`) before the API call, and forgejo's post-push
//! (default `origin`) before the API call, and forgejo's post-push
//! "Create a new pull request" / "Visit the existing pull request"
//! hint block is filtered out of git's stderr (we print the canonical
//! URL ourselves once the API returns). Other git stderr passes
@ -56,7 +56,7 @@ pub struct Args {
/// Push the local `--head` branch to `--remote` before creating the PR.
#[arg(long)]
push: bool,
/// Remote to push to (default: `forge`, or `origin` in `--agit` mode).
/// Remote to push to (default: `origin`).
#[arg(long)]
remote: Option<String>,
/// Open the PR via Forgejo's `AGit` flow instead of pushing a branch —
@ -98,7 +98,7 @@ pub fn run(client: &Client, args: Args) -> Result<()> {
.head
.as_deref()
.expect("clap requires --head unless --agit");
let remote = args.remote.as_deref().unwrap_or("forge");
let remote = args.remote.as_deref().unwrap_or("origin");
if args.push {
push_branch(remote, head)?;
}