Skip to content
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

Reading and writing global configuration parameters #775

Closed
andy-shev opened this issue Jun 19, 2018 · 4 comments · Fixed by #950
Closed

Reading and writing global configuration parameters #775

andy-shev opened this issue Jun 19, 2018 · 4 comments · Fixed by #950

Comments

@andy-shev
Copy link

andy-shev commented Jun 19, 2018

There is no way to get global configuration parameters without Repo object.
config_reader() must be repository independent. So does config_writer() and accompanying methods.

Simplest (and ugly) hack is to allow path=None in Repo().

@Byron
Copy link
Member

Byron commented Jul 15, 2018

Thanks for letting us know! Out of the back of my head, no simpler solution comes to mind.

@andy-shev
Copy link
Author

andy-shev commented Jul 5, 2019

Better workaround if anybody is interested.

import git
import os

class GitConfig(git.Repo):
    def __init__(self, *args, **kwargs):
        #
        # Work around the GitPython issue #775
        # https://github.com/gitpython-developers/GitPython/issues/775
        #
        self.git_dir = os.path.join(os.getcwd(), ".git")
        git.Repo.__init__(self, *args, **kwargs)

Usage:

r = GitConfig().config_reader()
print (r.get_value('user', 'name'))

@benthayer
Copy link
Contributor

@andy-shev Thank you! Solution worked for me too.

@Byron Are you open to PRs? It seems like this is mostly a matter of where to put the relevant code. If I figure out something logical, can I submit a PR and we discuss from there?

@Byron
Copy link
Member

Byron commented Oct 15, 2019

@bthayer2365 Absolutely, GitPython runs on PRs! Thanks for your participation :).

@Byron Byron added this to the v3.0.5 - Bugfixes milestone Oct 24, 2019
@Byron Byron closed this as completed Oct 24, 2019
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Development

Successfully merging a pull request may close this issue.

3 participants