feat: add Git shell aliases

This commit is contained in:
Oliver Davies 2022-09-27 07:41:43 +01:00
parent 7e03839b70
commit 96ca78cf8d

View file

@ -6,7 +6,11 @@
dotDir = ".config/zsh";
shellAliases = {
fetch = "git fetch --all --jobs=4 --progress --prune";
run = "./run";
pull = "git pull --autostash --jobs=4 --summary origin";
rebase = "git rebase --autostash --stat";
update = "fetch && rebase";
};
autocd = true;