From 52a2cfc73b66ea24edc35ea25266bb6668c1e0cd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Leonardo=20Eug=C3=AAnio?= Date: Sat, 20 Jan 2024 21:10:27 -0300 Subject: [PATCH] git: enable push.autoSetupRemote --- user/git.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/user/git.nix b/user/git.nix index ae241f0..09be75c 100644 --- a/user/git.nix +++ b/user/git.nix @@ -11,6 +11,7 @@ in { }; init.defaultBranch = "main"; commit.verbose = true; + push.autoSetupRemote = true; pull.rebase = true; merge.conflictStyle = "diff3"; rerere.enabled = true;