git: remove unstage alias and move it to a zsh

...abbreviation
This commit is contained in:
Oliver Davies 2024-10-30 14:52:31 +00:00
parent 83ae12e080
commit 3cc5c97178
2 changed files with 1 additions and 1 deletions

View file

@ -73,7 +73,6 @@
sla = "log --oneline --decorate --graph --all -20";
slap = "log --oneline --decorate --graph --all";
slp = "log --oneline --decorate";
staged = "diff --staged";
stash = "stash --included-untracked";
unassume = "update-index --no-assume-unchanged";
uncommit = "reset --soft HEAD^";

View file

@ -23,6 +23,7 @@ abbr gcl="git clone"
abbr gcm="git commit -m"
abbr gco="git checkout"
abbr gd="git diff"
abbr gds="git diff --staged"
abbr gf="git fetch"
abbr gfa="git fetch --all"
abbr gl="git log"