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-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" {
programs.nushell.shellAliases = {
g = "git";
ga = "git add ./";
grb = "git rebase --interactive";
ga = "git add";
gaa = "git add ./";
grb = "git rebase";
grbi = "git rebase --interactive";
grba = "git rebase --abort";
gc = "git commit --message";
gca = "git commit --amend";
gc = "git commit";
gcm = "git commit --message";
gca = "git commit --amend --no-edit";
gcl = "git clone";
gd = "git diff";
gds = "git diff --staged";
gp = "git push";
gs = "git stash";
gsp = "git stash pop";
gst = "git status";
};