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

This reverts commit c72bd47263.
This commit is contained in:
Oliver Davies 2025-10-24 00:01:07 +01:00
parent 6dcb9cdffa
commit bb8b5deb9f

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