git: remove 'unstage' which i never use, fix 'last'
HEAD main1 files changed, 1 insertions, 2 deletions
diff --git a/.config/git/config b/.config/git/config
index bfc13b6..3848058 100644
--- a/.config/git/config
+++ b/.config/git/config
@@ -19,12 +19,11 @@
; probably also needs to checkout main or develop first
clean = !git remote prune origin && git branch | xargs git branch -d
force = push --force-with-lease
- last = !got --no-pager show --abbrev-commit HEAD
+ last = !git --no-pager show --abbrev-commit HEAD
oops = commit --all --amend --no-edit
rebranch = !git checkout main && git pull && git checkout - && git rebase main
stashpull = !git stash && git pull && git stash pop
stat = status
tree = log --all --graph --oneline
- unstage = restore --staged
[gpg]
program = gpg
|