From 8293af72744bc89beac57a194602938536b429db Mon Sep 17 00:00:00 2001 From: DanConwayDev Date: Thu, 12 Feb 2026 09:47:43 +0000 Subject: feat: add ngit checkout command for non-interactive proposal checkout Adds a new 'ngit checkout ' command that creates or updates a proposal branch and checks it out. Supports both PRs and patches with parent-commit references. Phase 1 of non-interactive ngit list implementation. --- src/bin/ngit/main.rs | 1 + 1 file changed, 1 insertion(+) (limited to 'src/bin/ngit/main.rs') diff --git a/src/bin/ngit/main.rs b/src/bin/ngit/main.rs index b6b51d0..2c9e10f 100644 --- a/src/bin/ngit/main.rs +++ b/src/bin/ngit/main.rs @@ -53,6 +53,7 @@ async fn main() { } Commands::Send(args) => sub_commands::send::launch(&cli, args, false).await, Commands::Sync(args) => sub_commands::sync::launch(args).await, + Commands::Checkout { id } => sub_commands::checkout::launch(id).await, } } else { // Handle the case where no command is provided -- cgit v1.2.3