1
Fork 0
mirror of https://github.com/RGBCube/ncc synced 2025-07-31 12:07:48 +00:00

Add git show and git push --force alias

This commit is contained in:
RGBCube 2023-11-22 08:44:21 +03:00
parent e3de1bd7bf
commit fde9018f06
No known key found for this signature in database

View file

@ -17,6 +17,7 @@ homeConfiguration [ "nixos" "root" ] {
gds = "git diff --staged";
gp = "git push";
gpf = "git push --force";
grb = "git rebase";
grba = "git rebase --abort";
@ -30,6 +31,8 @@ homeConfiguration [ "nixos" "root" ] {
gs = "git stash";
gsp = "git stash pop";
gsh = "git show";
gst = "git status";
};