From fc8fcbe680f58e6b3371a83e436d4fa561874a6c Mon Sep 17 00:00:00 2001 From: Mohammad Rafiq Date: Thu, 15 May 2025 09:36:33 +0800 Subject: [PATCH] feat(git): add mor3 git aliases --- configs/programs/git.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/configs/programs/git.nix b/configs/programs/git.nix index 24e9be9..96c3b5b 100644 --- a/configs/programs/git.nix +++ b/configs/programs/git.nix @@ -4,6 +4,10 @@ home.shellAliases = { g = "git"; gs = "git status"; + gc = "git commit"; + gcam = "git commit -am"; + gu = "git push"; + gy = "git pull"; }; programs.git = {