feat(nix/prog/git): add aliases

... for checkout, commit, status and push
This commit is contained in:
Dmitriy Pleshevskiy 2022-04-05 12:55:49 +03:00
parent f83810b4f1
commit 72f250512d
1 changed files with 8 additions and 0 deletions

View File

@ -31,6 +31,14 @@ in
init.defaultBranch = "main";
pull.rebase = true;
};
aliases = {
co = "checkout";
ci = "commit";
cia = "commit --amend";
cian = "commit --amend --no-edit";
st = "status -sb";
fpush = "push --force-with-lease";
};
};
programs.exa = {