Example given in the docs for clone repository results in empty repository at mentioned path.
from pygit2 import clone_repository
repo_url = 'git://github.com/libgit2/pygit2.git'
repo_path = '/path/to/create/repository'
repo = clone_repository(repo_url, repo_path) # Clones a non-bare repository
Code execution doesn't yield any errors, any clues?
Example given in the docs for clone repository results in empty repository at mentioned path.
Code execution doesn't yield any errors, any clues?