feat: add gita (multi-repo git manager) + aliases
This commit is contained in:
parent
2ca3aa219d
commit
2164f618f4
2 changed files with 11 additions and 0 deletions
|
|
@ -35,6 +35,7 @@
|
||||||
broot # tree с превью
|
broot # tree с превью
|
||||||
trash-cli # rm с корзиной
|
trash-cli # rm с корзиной
|
||||||
texliveFull # LaTeX (~4GB, для математики)
|
texliveFull # LaTeX (~4GB, для математики)
|
||||||
|
gita # manage multiple git repos
|
||||||
];
|
];
|
||||||
|
|
||||||
# TODO: global npm/pnpm packages not managed by nix for now
|
# TODO: global npm/pnpm packages not managed by nix for now
|
||||||
|
|
|
||||||
10
home/zsh.nix
10
home/zsh.nix
|
|
@ -45,6 +45,16 @@
|
||||||
la = "eza -la --icons --git";
|
la = "eza -la --icons --git";
|
||||||
ff = "fastfetch";
|
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 (password store)
|
||||||
pass-sync = "pass git push";
|
pass-sync = "pass git push";
|
||||||
pass-pull = "pass git pull";
|
pass-pull = "pass git pull";
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue