1
Fork 0
mirror of https://github.com/RGBCube/ncc synced 2025-08-01 04:27:46 +00:00

Add git log and git pull aliases

This commit is contained in:
RGBCube 2023-11-23 23:07:41 +03:00
parent 7b10e526a7
commit 4a35fdcdcc
No known key found for this signature in database

View file

@ -19,6 +19,14 @@ homeConfiguration [ "nixos" "root" ] {
gp = "git push";
gpf = "git push --force";
gl = "git log";
glo = "git log --oneline";
gpl = "git pull";
gplr = "git pull --rebase";
gplforce = "git pull --force";
gplff = "git pull --ff-only";
grb = "git rebase";
grba = "git rebase --abort";
grbi = "git rebase --interactive";