-
Notifications
You must be signed in to change notification settings - Fork 86
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support gitconfig in XDG directory #95
Comments
ok, two tasks are needed:
what I believe is that it's not |
I can see there's a facility in gitpython to provide I believe providing the proper path shouldn't be hard. |
looking further, the impact seems to located mostly in two use cases of the application:
|
Fixes: #95 Signed-off-by: Guyzmo <[email protected]>
sorry for not having left you the change to do it, but I went over that part of the code and just did it. Please test the devel branch, I'm going to release it early next week (I'm waiting on new release of pybitbucket and that FOSDEM is over… whichever comes first 😉) |
🚧 Features * Gogs (fixes #18) (kudos @pyhedgehog) * certificate pinning (fixes #88) * non-standard http ports (fixes #81) * possibility to use custom SSH address (fixes #107) * .gitconfig in XDG home directory (fixes #95) * .gitconfig's proxy definition support (fixes #105) * automatically grab PR title/body from last commit (fixes #73) 🚒 Bugfixes * refactoring of listings, improved list command (fixes #114) 💄 Cosmetics * Switch to a git tag scheme for versioning (using setuptools-scm) * Updated README with new informations * Added @pyhedgehog to contributors * Updated TODO list Signed-off-by: Guyzmo <[email protected]>
Git began fully implementing support for config files in $XDG_CONFIG_HOME fairly recently in v2.4.3. Here's the commit:
git/git@ea19289
Using the XDG directory, the git-config supported path is
$XDG_CONFIG_HOME/git/config
, and if the environment variable is undefined it ought to default to$HOME/.config
.@m040601 requested this feature.
#63 (comment)
I'd be interested in implementing.
The text was updated successfully, but these errors were encountered: