From b4e470961a37b723c340da091690ceed419a6122 Mon Sep 17 00:00:00 2001 From: Oliver Davies Date: Thu, 8 May 2025 18:09:18 +0100 Subject: [PATCH] Add `git push` abbreviations --- modules/home-manager/cli/zsh/abbreviations.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/modules/home-manager/cli/zsh/abbreviations.nix b/modules/home-manager/cli/zsh/abbreviations.nix index 8f47d029..9890f5b8 100644 --- a/modules/home-manager/cli/zsh/abbreviations.nix +++ b/modules/home-manager/cli/zsh/abbreviations.nix @@ -46,6 +46,8 @@ gpa = "git push acquia"; gpam = "git push acquia main"; gpap = "git push acquia HEAD:production"; + gpf = "git push --force-with-lease"; + gpfo = "git push --force-with-lease origin"; gpl = "git pull"; gplr = "git pull --rebase"; gpo = "git push origin";