git: add aliases
authorJulien Moutinho <julm+julm-nix@sourcephile.fr>
Wed, 16 Feb 2022 05:59:30 +0000 (06:59 +0100)
committerJulien Moutinho <julm+julm-nix@sourcephile.fr>
Sat, 19 Feb 2022 20:37:24 +0000 (21:37 +0100)
home-manager/profiles/git.nix

index aa21a40a10baf3fbdc179ecf903303018b35bc4d..a44122e18222729d3810ad0e950d06ed3fe464d1 100644 (file)
@@ -15,7 +15,8 @@ programs.git = {
     bl = "git log -p -M --follow --stat --";
     b = "branch";
     c = "commit";
-    ca = "commit --amend -C@";
+    ca = "commit --amend";
+    caa = "commit --amend -C@";
     cf = "commit --fixup";
     co = "checkout";
     d = "diff";
@@ -23,8 +24,15 @@ programs.git = {
     dh = "diff --histogram";
     dp = "diff --patience";
     ign = "ls-files -o -i --exclude-standard";
+    l = "log";
     ll = "log --graph --decorate --pretty=oneline --abbrev-commit";
     lp = "log -p --pretty=fuller";
+    lpg = "log -p --pretty=fuller -g";
+    p = "push -v";
+    pf = "push -vf";
+    pu = "pull";
+    r = "reset";
+    rh = "reset --hard";
     s = "status";
     spull = "!git-svn fetch && git-svn rebase";
     spush = "!git-svn dcommit";