diff --git a/modules/zsh/abbreviations/abbreviations.nix b/modules/zsh/abbreviations/abbreviations.nix index 95022561..c979afff 100644 --- a/modules/zsh/abbreviations/abbreviations.nix +++ b/modules/zsh/abbreviations/abbreviations.nix @@ -28,7 +28,7 @@ g = "git"; ga = "git add"; gan = "git add -N"; - gap = "git add -p"; + gap = "git add . -p"; gb = "git branch"; gba = "git branch --all"; gbl = "git blame"; @@ -39,16 +39,16 @@ gcm = "git commit -m"; gco = "git checkout"; gcob = "git checkout -b"; - gd = "git diff"; - gds = "git diff --staged"; + gd = "git diff ."; + gds = "git diff . --staged"; gf = "git fetch"; gfa = "git fetch --all"; gl = "git log"; - glg = "git log --grep"; - glo = "git log --oneline"; - glog = "git log --oneline --grep"; - glos = "git log --oneline -S"; - gls = "git log -S"; + glg = "git log --grep ."; + glo = "git log --oneline ."; + glog = "git log --oneline --grep ."; + glos = "git log --oneline -S ."; + gls = "git log . -S"; gm = "git merge"; gmf = "git merge --ff"; gmnf = "git merge --no-ff"; @@ -67,9 +67,9 @@ gra = "git rebase --abort"; grc = "git rebase --continue"; gri = "git rebase -i"; - gs = "git status"; - gsh = "git show"; - gst = "git stash"; + gs = "git status ."; + gsh = "git show ."; + gst = "git stash ."; gstp = "git stash pop"; gt = "git tag";