Re: [PATCH] remote-helpers: trivial cleanup
From: Junio C Hamano <hidden>
Date: 2016-06-15 22:57:10
Felipe Contreras [off-list ref] writes:
quoted hunk
The comment was copied from hg-fast-export, not used anymore. Signed-off-by: Felipe Contreras <redacted> --- contrib/remote-helpers/git-remote-bzr | 1 - contrib/remote-helpers/git-remote-hg | 1 - 2 files changed, 2 deletions(-)diff --git a/contrib/remote-helpers/git-remote-bzr b/contrib/remote-helpers/git-remote-bzr index c19ed0e..3604c7d 100755 --- a/contrib/remote-helpers/git-remote-bzr +++ b/contrib/remote-helpers/git-remote-bzr@@ -323,7 +323,6 @@ def export_branch(branch, name): count += 1 if (count % 100 == 0): print "progress revision %s (%d/%d)" % (revid, count, len(revs)) - print "#############################################################" repo.unlock()
THe above no longer is relevant, I think, after a39769995050 (remote-bzr: improve progress reporting, 2013-04-30). I'll apply only the hunk for remote-hg.
quoted hunk
diff --git a/contrib/remote-helpers/git-remote-hg b/contrib/remote-helpers/git-remote-hg index 06920f2..96ad30d 100755 --- a/contrib/remote-helpers/git-remote-hg +++ b/contrib/remote-helpers/git-remote-hg@@ -453,7 +453,6 @@ def export_ref(repo, name, kind, head): count += 1 if (count % 100 == 0): print "progress revision %d '%s' (%d/%d)" % (rev, name, count, len(revs)) - print "#############################################################" # make sure the ref is updated print "reset %s/%s" % (prefix, ename)