Skip to content
Snippets Groups Projects
Commit 912d6a58 authored by Abderrahim Kitouni's avatar Abderrahim Kitouni
Browse files

reorganize export_hg_commit

parent 6f34aee6
No related branches found
No related tags found
No related merge requests found
......@@ -225,7 +225,6 @@
if p_node != nullid and not hex(p_node) in self._map_hg:
self.export_hg_commit(p_rev)
tree_sha = commit_tree(self.git.object_store, self.iterblobs(ctx))
renames = []
for f in ctx:
rename = ctx.filectx(f).renamed()
......@@ -233,8 +232,6 @@
renames.append((rename[0], f))
commit = Commit()
commit.tree = tree_sha
(time, timezone) = ctx.date()
# hg authors might not have emails
author = ctx.user()
......@@ -255,6 +252,8 @@
if 'author' in extra:
author = apply_delta(author, extra['author'])
(time, timezone) = ctx.date()
commit.author = author
commit.author_time = int(time)
commit.author_timezone = -timezone
......@@ -314,6 +313,9 @@
if git_sha:
commit.parents.append(git_sha)
tree_sha = commit_tree(self.git.object_store, self.iterblobs(ctx))
commit.tree = tree_sha
self.git.object_store.add_object(commit)
self.map_set(commit.id, ctx.hex())
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment