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
a0397085ed
commit
6745fa9bba
1 changed files with 8 additions and 4 deletions
|
@ -3,16 +3,20 @@
|
||||||
homeConfiguration "nixos" {
|
homeConfiguration "nixos" {
|
||||||
programs.nushell.shellAliases = {
|
programs.nushell.shellAliases = {
|
||||||
g = "git";
|
g = "git";
|
||||||
ga = "git add ./";
|
ga = "git add";
|
||||||
grb = "git rebase --interactive";
|
gaa = "git add ./";
|
||||||
|
grb = "git rebase";
|
||||||
|
grbi = "git rebase --interactive";
|
||||||
grba = "git rebase --abort";
|
grba = "git rebase --abort";
|
||||||
gc = "git commit --message";
|
gc = "git commit";
|
||||||
gca = "git commit --amend";
|
gcm = "git commit --message";
|
||||||
|
gca = "git commit --amend --no-edit";
|
||||||
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 stash";
|
gs = "git stash";
|
||||||
|
gsp = "git stash pop";
|
||||||
gst = "git status";
|
gst = "git status";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue