From 44025b14e012574c4cb4843aaec17c2dd0f71c59 Mon Sep 17 00:00:00 2001 From: Steph Enders Date: Thu, 30 Mar 2023 00:00:37 -0400 Subject: Fix gitconfig ignore path - cannot resolve $HOME Some stupid reason I was thinking "oh $HOME is more universal" ... IDK why I thought that would make sense versuses using ~/ which is like... ugh... don't program while sleepy kids. --- .gitconfig | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to '.gitconfig') diff --git a/.gitconfig b/.gitconfig index bdb531c..57ad831 100644 --- a/.gitconfig +++ b/.gitconfig @@ -9,7 +9,7 @@ cp = cherry-pick br = branch [core] - excludesfile = $HOME/.gitignore + excludesfile = ~/.gitignore autocrlf = input [user] @@ -30,4 +30,4 @@ br = branch required = true [init] - defaultBranch=main \ No newline at end of file + defaultBranch=main -- cgit v1.2.3-54-g00ecf