Clone a remote repository with GitPython

Example code:

{% highlight python %} import git

remote = 'https://github.com/gitpython-developers/GitPython.git' local = '/home/marios/Tests/gitpython'

git.Repo.clone_from(remote, local) {% endhighlight %}

Posted on