From bcfe50d3caed9991d02d9b29c63a72ccd6b6d761 Mon Sep 17 00:00:00 2001 From: Tine Date: Thu, 16 May 2024 22:13:52 +0200 Subject: [PATCH] feat: more git aliases --- nix/core.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/nix/core.nix b/nix/core.nix index 8985da6..4bf71b2 100644 --- a/nix/core.nix +++ b/nix/core.nix @@ -186,6 +186,9 @@ "ga" = "git add"; "gc" = "git commit"; "gr" = "git stash && gicm && git rebase main"; + "gs" = "git status"; + "gl" = "git log"; + "gp" = "git push"; }; };