From aaad288f637b3ce5d6330c9a783b4bfef69b770f Mon Sep 17 00:00:00 2001 From: twoneis Date: Sat, 10 Feb 2024 02:11:57 +0100 Subject: [PATCH] more git aliases --- modules/home/shell/default.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/modules/home/shell/default.nix b/modules/home/shell/default.nix index 1fc1486..92216ec 100644 --- a/modules/home/shell/default.nix +++ b/modules/home/shell/default.nix @@ -5,11 +5,14 @@ ]; home.shellAliases = { - ga = "git add -A"; + ga = "git add"; gc = "git commit -m "; gca = "git add -A && git commit -am "; + gs = "git stash"; + gsp = "git stash pop"; gp = "git push"; gpl = "git pull --recurse-submodules"; + gst = "git status"; nrb = "sudo nixos-rebuild switch --flake . --cores 0"; nd = "nix develop";