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