feat(nix/prog/git): add aliases
... for checkout, commit, status and push
This commit is contained in:
parent
f83810b4f1
commit
72f250512d
1 changed files with 8 additions and 0 deletions
|
@ -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 = {
|
||||
|
|
Loading…
Reference in a new issue