1
Fork 0
mirror of https://github.com/RGBCube/ncc synced 2025-07-29 19:17:45 +00:00

Adjust git aliases

This commit is contained in:
RGBCube 2023-05-20 21:59:03 +03:00
parent 158e5209c0
commit eb095e40e1
No known key found for this signature in database

View file

@ -4,15 +4,16 @@ homeConfiguration "nixos" {
programs.nushell.shellAliases = {
g = "git";
ga = "git add ./";
gb = "git rebase -i";
gba = "git rebase --abort";
grb = "git rebase -i";
grba = "git rebase --abort";
gc = "git commit -m";
gca = "git commit --amend";
gcl = "git clone";
gd = "git diff";
gds = "git diff --staged";
gp = "git push";
gs = "git status";
gs = "git stash";
gss = "git status";
};
programs.git = enabled {