mirror of
https://github.com/RGBCube/ncc
synced 2025-07-30 11:37:44 +00:00
Adjust git aliases
This commit is contained in:
parent
158e5209c0
commit
eb095e40e1
1 changed files with 4 additions and 3 deletions
|
@ -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 {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue