From ad9ad1f6e0889f0fbc4b9424fcf27038f4720f8f Mon Sep 17 00:00:00 2001 From: Jordan Atwood Date: Thu, 22 Dec 2022 15:43:42 -0800 Subject: [PATCH] Remove duplicated git include Commit de8ad4ac08a88d73a95adbe91d2e8eb31630462a added an include of ~/.user.gitconfig following the global definitions in ~/.gitconfig. What I had forgotten is that it was included earlier in the alphabetically-sorted `[include]` section. Oops! --- src/.gitconfig | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/.gitconfig b/src/.gitconfig index e1d6d86..934584d 100644 --- a/src/.gitconfig +++ b/src/.gitconfig @@ -58,9 +58,6 @@ prune = true [help] autocorrect = 20 -[include] - # Define system-specific user configs such as GPG signing key - path = ~/.user.gitconfig [interactive] # Build or install `diff-highlight` to some $PATH present location for # improved interactive diff highlights. Falls back on plain `core.pager` if @@ -89,4 +86,6 @@ email = nightfirecat@nightfirec.at [include] + # Define system-specific configs such as GPG signing key or alternate name + # and email path = ~/.user.gitconfig