From b143abb25d6ece32412629baa3e75e94d139979f Mon Sep 17 00:00:00 2001 From: DanConwayDev Date: Thu, 5 Mar 2026 13:14:34 +0000 Subject: refactor(subject): standardise on subject over title in CLI and output - JSON output fields renamed from title to subject in pr list/view and issue list/view - Printed view output changed from Title: to Subject: - ngit issue create --subject (alias --title) - ngit send --subject (alias --title) - Error messages and interactive prompts updated to match --- src/bin/ngit/cli.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/bin/ngit/cli.rs') diff --git a/src/bin/ngit/cli.rs b/src/bin/ngit/cli.rs index 8cdbee1..8660b60 100644 --- a/src/bin/ngit/cli.rs +++ b/src/bin/ngit/cli.rs @@ -397,9 +397,9 @@ pub enum IssueCommands { }, /// create a new issue Create { - /// Issue title - #[arg(long)] - title: Option, + /// Issue subject/title + #[arg(long, alias = "title")] + subject: Option, /// Issue body / description #[arg(long)] body: Option, -- cgit v1.2.3