From 0a4d4d454bd922decd17e709812a83194b348c74 Mon Sep 17 00:00:00 2001 From: RGBCube Date: Sat, 2 Mar 2024 12:50:52 +0300 Subject: [PATCH] Force with lease instead of --force in git aliases --- modules/git.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/git.nix b/modules/git.nix index 8f33354..aebf81d 100644 --- a/modules/git.nix +++ b/modules/git.nix @@ -24,7 +24,7 @@ gds = "git diff --staged"; gp = "git push"; - gpf = "git push --force"; + gpf = "git push --force-with-lease"; gl = "git log"; glo = "git log --oneline";