diff options
author | Steph Enders <steph@senders.io> | 2023-03-30 00:00:37 -0400 |
---|---|---|
committer | Steph Enders <steph@senders.io> | 2023-03-30 00:00:37 -0400 |
commit | 44025b14e012574c4cb4843aaec17c2dd0f71c59 (patch) | |
tree | e374050af2e2d3e223eeecb920bfc8fa4e22126b /.gitconfig | |
parent | ce3c677dd40eb7b9d5a967a86e691e3a83ef4d58 (diff) |
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.
Diffstat (limited to '.gitconfig')
-rw-r--r-- | .gitconfig | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 |