From 2164f618f48a4c6bfb21a8a7829436b6a8c95a5f Mon Sep 17 00:00:00 2001 From: mikl Date: Wed, 1 Jul 2026 23:49:38 +0300 Subject: [PATCH] feat: add gita (multi-repo git manager) + aliases --- home/cli.nix | 1 + home/zsh.nix | 10 ++++++++++ 2 files changed, 11 insertions(+) diff --git a/home/cli.nix b/home/cli.nix index a2074bb..363d3cd 100644 --- a/home/cli.nix +++ b/home/cli.nix @@ -35,6 +35,7 @@ broot # tree с превью trash-cli # rm с корзиной texliveFull # LaTeX (~4GB, для математики) + gita # manage multiple git repos ]; # TODO: global npm/pnpm packages not managed by nix for now diff --git a/home/zsh.nix b/home/zsh.nix index 3efdbea..9f00444 100644 --- a/home/zsh.nix +++ b/home/zsh.nix @@ -45,6 +45,16 @@ la = "eza -la --icons --git"; ff = "fastfetch"; + # gita (manage multiple git repos) + gll = "gita ll"; + gllg = "gita ll -g"; + gadd = "gita add"; + gstatus = "gita status"; + gfetch = "gita fetch"; + gremote = "gita remote"; + ginfo = "gita info"; + gll-all = "gita ll -g"; + # pass sync (password store) pass-sync = "pass git push"; pass-pull = "pass git pull";