Skip to content
Snippets Groups Projects
Commit 421c992c authored by Sverre Rabbelier's avatar Sverre Rabbelier
Browse files

import_git_objects: add progress indicator

parent 324a1ad9
No related branches found
No related tags found
No related merge requests found
......@@ -465,7 +465,11 @@
commits = toposort.TopoSort(convert_list).items()
# import each of the commits, oldest first
for csha in commits:
total = len(commits)
magnitude = int(math.log(total, 10)) + 1 if total else 1
for i, csha in enumerate(commits):
if i%100 == 0:
self.ui.status(_("at: %*d/%d\n") % (magnitude, i, total))
commit = convert_list[csha]
if not self.map_hg_get(csha): # it's already here
self.import_git_commit(commit)
......
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