From b7475d94abadb66c65f9c48f1284e351ff158e93 Mon Sep 17 00:00:00 2001 From: LavaDesu Date: Thu, 27 May 2021 13:08:02 +0700 Subject: [PATCH] add a few more git abbreviations --- users/rin/zsh.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/users/rin/zsh.nix b/users/rin/zsh.nix index 748bd4f..ca89028 100644 --- a/users/rin/zsh.nix +++ b/users/rin/zsh.nix @@ -35,12 +35,14 @@ let nr = "doas nixos-rebuild switch --flake .#winter -v"; gs = "git status"; - ga = "git add ."; + ga = "git add"; + gaa = "git add ."; gc = "git commit"; gac = "git add .; git commit"; gcm = "git commit -m"; gco = "git checkout"; gd = "git diff"; + gds = "git diff --staged"; gf = "git commit --amend --no-edit"; gl = "git log"; gr = "git rebase -i";