From aa1369cd903ffc72dc0608b1cc17ce572f7366eb Mon Sep 17 00:00:00 2001 From: Infinidoge Date: Thu, 19 Jun 2025 03:46:47 -0400 Subject: [PATCH] global/git: add pup and puap aliases --- users/modules/global/git.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/users/modules/global/git.nix b/users/modules/global/git.nix index 317b3ce..72f17f4 100644 --- a/users/modules/global/git.nix +++ b/users/modules/global/git.nix @@ -67,6 +67,8 @@ pfl = "push --force-with-lease"; pu = "pull"; pua = "pull --autostash"; + pup = "!git pull && git push"; + puap = "!git pull --autostash && git push"; b = "branch"; ba = "branch -a"; bd = "branch -d";