Specify the working directory
All checks were successful
/ check (push) Successful in 47s

Faster when working in monorepos where I only want to see the changes in
the current directory, not every project.

Signed-off-by: Oliver Davies <oliver@oliverdavies.uk>
This commit is contained in:
Oliver Davies 2025-10-06 21:08:33 +01:00
parent be54387298
commit c72bd47263

View file

@ -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";