From 4b6814ae28cd3367c5767295a05a792e29381b09 Mon Sep 17 00:00:00 2001 From: Hadi <112569860+anotherhadi@users.noreply.github.com> Date: Tue, 15 Oct 2024 02:34:00 +0200 Subject: [PATCH] Add git aliases --- home/programs/shell/zsh.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/home/programs/shell/zsh.nix b/home/programs/shell/zsh.nix index f57c532..623ef80 100644 --- a/home/programs/shell/zsh.nix +++ b/home/programs/shell/zsh.nix @@ -81,6 +81,9 @@ in { gco = "git checkout"; gcb = "git checkout -b"; gbr = "git branch"; + + gaa = "git add ."; + gcc = "git commit -m"; }; }; }