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-25 17:46:59 +03:00
parent a0397085ed
commit 6745fa9bba
No known key found for this signature in database

View file

@ -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";
}; };