Consolidate Git aliases

Move the `update` alias into the Git namespace, so it's now `git
update`, and remove the others that I wasn't using.
This commit is contained in:
Oliver Davies 2024-05-20 19:09:17 +01:00
parent 2382103445
commit ab20c7de69
2 changed files with 2 additions and 6 deletions

View file

@ -87,6 +87,8 @@
unassume = "update-index --no-assume-unchanged";
uncommit = "reset --soft HEAD^";
unstage = "reset";
update =
"!git fetch --all --jobs=4 --prune --progress && git rebase --autostash --stat";
upstream = "rev-parse --abbrev-ref --symbolic-full-name @{u}";
ureset = "!git reset --hard $(git upstream)";
worktrees = "worktree list";