1
Fork 0
mirror of https://github.com/RGBCube/ncc synced 2025-07-30 11:37:44 +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 = { programs.nushell.shellAliases = {
g = "git"; g = "git";
ga = "git add ./"; ga = "git add ./";
gb = "git rebase -i"; grb = "git rebase -i";
gba = "git rebase --abort"; grba = "git rebase --abort";
gc = "git commit -m"; gc = "git commit -m";
gca = "git commit --amend"; gca = "git commit --amend";
gcl = "git clone"; gcl = "git clone";
gd = "git diff"; gd = "git diff";
gds = "git diff --staged"; gds = "git diff --staged";
gp = "git push"; gp = "git push";
gs = "git status"; gs = "git stash";
gss = "git status";
}; };
programs.git = enabled { programs.git = enabled {