As specified by the config options user.name and user.email, and the environment variables GIT_{AUTHOR,COMMITTER}_{NAME,EMAIL,DATE} (the latter overriding the former). Nothing uses this yet, but "stg edit" will soon. Signed-off-by: Karl Hasselström <kha@xxxxxxxxxxx> --- stgit/lib/git.py | 24 ++++++++++++++++++++++++ 1 files changed, 24 insertions(+), 0 deletions(-) diff --git a/stgit/lib/git.py b/stgit/lib/git.py index 6cd7450..8678979 100644 --- a/stgit/lib/git.py +++ b/stgit/lib/git.py @@ -52,6 +52,30 @@ class Person(Repr): email = m.group(2) date = m.group(3) return cls(name, email, date) + @classmethod + def user(cls): + if not hasattr(cls, '__user'): + cls.__user = cls(name = config.get('user.name'), + email = config.get('user.email')) + return cls.__user + @classmethod + def author(cls): + if not hasattr(cls, '__author'): + cls.__author = cls( + name = os.environ.get('GIT_AUTHOR_NAME', NoValue), + email = os.environ.get('GIT_AUTHOR_EMAIL', NoValue), + date = os.environ.get('GIT_AUTHOR_DATE', NoValue), + defaults = cls.user()) + return cls.__author + @classmethod + def committer(cls): + if not hasattr(cls, '__committer'): + cls.__committer = cls( + name = os.environ.get('GIT_COMMITTER_NAME', NoValue), + email = os.environ.get('GIT_COMMITTER_EMAIL', NoValue), + date = os.environ.get('GIT_COMMITTER_DATE', NoValue), + defaults = cls.user()) + return cls.__committer class Tree(Repr): """Immutable.""" - To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html