From e50687b908e802c9f3328c9b57060b63bb5706c0 Mon Sep 17 00:00:00 2001 From: DanConwayDev Date: Fri, 20 Feb 2026 23:03:15 +0000 Subject: improve `ngit repo` output styling - make repo name bold yellow as a title; section headings bold dim - add dim horizontal rules above and below the name/description block - move earliest unique commit to the bottom (after additional relays) - add --offline flag to skip network fetch and use local cache only --- src/bin/ngit/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/bin/ngit/main.rs') diff --git a/src/bin/ngit/main.rs b/src/bin/ngit/main.rs index 924a714..5a7654a 100644 --- a/src/bin/ngit/main.rs +++ b/src/bin/ngit/main.rs @@ -50,7 +50,7 @@ async fn main() { }, Commands::Init(args) => sub_commands::init::launch(&cli, args).await, Commands::Repo(args) => { - sub_commands::repo::launch(&cli, args.repo_command.as_ref()).await + sub_commands::repo::launch(&cli, args.repo_command.as_ref(), args.offline).await } Commands::List { status, -- cgit v1.2.3