You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@Byron thanks for the fix & the video. I think you're close. But it's not quite right.
Your code would be looking for either $XDG_CONFIG_HOME/.config/git/config or $HOME/.config/git/config. Per the git documentation, it should be $XDG_CONFIG_HOME/git/config.
The point is that XDG_CONFIG_HOME is meant to point at the '.config' directory,
whereas '.config' has to be added only if HOME is used instead.
Fixes#160
Thanks a bunch - you are totally right and I have basically put in the code in your override. Additionally I had a look at the c-git source and it is indeed implemented similarly.
Support for this second user-specific configuration file was added to git in v1.7.12. See commit comments and git documentation for details. Consider adding a "user" config_level to Repo.config_reader between "system" and "global".
The text was updated successfully, but these errors were encountered: