From 242e6c34f7c47379e7885ad1f4855e2bdaaafc9d Mon Sep 17 00:00:00 2001 From: twoneis Date: Sat, 13 Jan 2024 00:59:55 +0100 Subject: [PATCH] updated git aliases --- modules/home/shell/default.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/modules/home/shell/default.nix b/modules/home/shell/default.nix index f30ae85..7df5e94 100644 --- a/modules/home/shell/default.nix +++ b/modules/home/shell/default.nix @@ -1,7 +1,8 @@ { ... }: { home.shellAliases = { ga = "git add -A"; - gc = "git commit -am "; + gc = "git commit -m "; + gca = "git add -A && git commit -am "; gp = "git push"; gpl = "git pull --recurse-submodules";