Skip to content
Snippets Groups Projects
Commit 1d326a57 authored by Jordi Gutiérrez Hermoso's avatar Jordi Gutiérrez Hermoso
Browse files

git-handler: turn refs from None to {} so that empty git repos can convert

parent 503d403f
No related branches found
No related tags found
No related merge requests found
......@@ -1017,7 +1017,11 @@
f.seek(0)
po = self.git.object_store.add_thin_pack(f.read, None)
progress.flush()
return ret
# For empty repos dulwich gives us None, but since later
# we want to iterate over this, we really want an empty
# iterable
return ret if ret else {}
except (HangupException, GitProtocolError), e:
raise hgutil.Abort(_("git remote error: ") + str(e))
......
......@@ -50,3 +50,11 @@
date: Mon Jan 01 00:00:10 2007 +0000
summary: add alpha
clone empty repo
$ git init empty
Initialized empty Git repository in $TESTTMP/empty/.git/
$ hg clone empty emptyhg
no changes found
updating to branch default
0 files updated, 0 files merged, 0 files removed, 0 files unresolved
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