From ef552c12a6604c4b834f80b68c342d7f9668aa4b Mon Sep 17 00:00:00 2001 From: DanConwayDev Date: Wed, 27 Nov 2024 10:13:19 +0000 Subject: feat: remove `pull` `push` and `fetch` ngit cmds to simplify the api and encourage use of the git remote helper --- src/bin/ngit/main.rs | 3 --- 1 file changed, 3 deletions(-) (limited to 'src/bin/ngit/main.rs') diff --git a/src/bin/ngit/main.rs b/src/bin/ngit/main.rs index a49267b..a6e3e11 100644 --- a/src/bin/ngit/main.rs +++ b/src/bin/ngit/main.rs @@ -20,11 +20,8 @@ async fn main() -> Result<()> { AccountCommands::Logout => sub_commands::logout::launch().await, AccountCommands::ExportKeys => sub_commands::export_keys::launch().await, }, - Commands::Fetch(args) => sub_commands::fetch::launch(&cli, args).await, Commands::Init(args) => sub_commands::init::launch(&cli, args).await, Commands::List => sub_commands::list::launch().await, - Commands::Pull => sub_commands::pull::launch().await, - Commands::Push(args) => sub_commands::push::launch(&cli, args).await, Commands::Send(args) => sub_commands::send::launch(&cli, args, false).await, } } -- cgit v1.2.3