mirror of
https://github.com/git/git.git
synced 2024-11-28 04:23:30 +08:00
remote-bzr: add fallback check for a partial clone
Signed-off-by: Felipe Contreras <felipe.contreras@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
parent
e56660a73f
commit
85f931d3d5
@ -766,7 +766,10 @@ def do_list(parser):
|
||||
print
|
||||
|
||||
def clone(path, remote_branch):
|
||||
bdir = bzrlib.bzrdir.BzrDir.create(path)
|
||||
try:
|
||||
bdir = bzrlib.bzrdir.BzrDir.create(path)
|
||||
except bzrlib.errors.AlreadyControlDirError:
|
||||
bdir = bzrlib.bzrdir.BzrDir.open(path)
|
||||
repo = bdir.find_repository()
|
||||
repo.fetch(remote_branch.repository)
|
||||
return remote_branch.sprout(bdir, repository=repo)
|
||||
|
Loading…
Reference in New Issue
Block a user