From 8a60b5a1c1bd9d1717640de2112dbe59a45b0583 Mon Sep 17 00:00:00 2001 From: electria Date: Mon, 25 May 2026 21:16:20 -0700 Subject: [PATCH] feat(git): do enable push.autoSetupRemote the convinience is real --- defaults/git.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/defaults/git.nix b/defaults/git.nix index f1090db..95235bf 100644 --- a/defaults/git.nix +++ b/defaults/git.nix @@ -34,6 +34,8 @@ in # causing further problems pull.ff = "only"; + push.autoSetupRemote = true; + merge.conflictStyle = "zdiff3"; # easiest to understand style commit.verbose = true; # show diffs in commit editor }