diff options
Diffstat (limited to 'git/refs/symbolic.py')
-rw-r--r-- | git/refs/symbolic.py | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/git/refs/symbolic.py b/git/refs/symbolic.py index 9f9eb9f5..eb11627d 100644 --- a/git/refs/symbolic.py +++ b/git/refs/symbolic.py @@ -355,9 +355,11 @@ class SymbolicReference(object): :param newbinsha: The sha the ref points to now. If None, our current commit sha will be used :return: added RefLogEntry instance""" - return RefLog.append_entry(self.repo.config_reader(), RefLog.path(self), oldbinsha, - (newbinsha is None and self.commit.binsha) or newbinsha, - message) + # NOTE: we use the committer of the currently active commit - this should be + # correct. See https://github.com/gitpython-developers/GitPython/pull/146 + return RefLog.append_entry(self.commit.committer, RefLog.path(self), oldbinsha, + (newbinsha is None and self.commit.binsha) or newbinsha, + message) def log_entry(self, index): """:return: RefLogEntry at the given index |