diff options
author | dequis <dx@dxzone.com.ar> | 2014-04-09 13:50:03 -0500 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2014-04-09 14:20:48 -0700 |
commit | 62210887f783d942ddfa918b3974b42311d3ef9d (patch) | |
tree | f1c5ca54ceef3574913ee20cb8d1a73cb3b5679f /contrib/remote-helpers/git-remote-bzr | |
parent | 5ff569908dd6e174c2d81df8e25ecc8af34fc5a8 (diff) | |
download | git-62210887f783d942ddfa918b3974b42311d3ef9d.tar.gz |
remote-bzr: include authors field in pushed commits
Tests-by: Felipe Contreras <felipe.contreras@gmail.com>
Signed-off-by: Felipe Contreras <felipe.contreras@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'contrib/remote-helpers/git-remote-bzr')
-rwxr-xr-x | contrib/remote-helpers/git-remote-bzr | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/contrib/remote-helpers/git-remote-bzr b/contrib/remote-helpers/git-remote-bzr index 7f354c88e7..6ca1e975c3 100755 --- a/contrib/remote-helpers/git-remote-bzr +++ b/contrib/remote-helpers/git-remote-bzr @@ -618,10 +618,12 @@ def parse_commit(parser): files[path] = f committer, date, tz = committer + author, _, _ = author parents = [mark_to_rev(p) for p in parents] revid = bzrlib.generate_ids.gen_revision_id(committer, date) props = {} props['branch-nick'] = branch.nick + props['authors'] = author mtree = CustomTree(branch, revid, parents, files) changes = mtree.iter_changes() |