summaryrefslogtreecommitdiff
path: root/git/repo/base.py
diff options
context:
space:
mode:
authorSebastian Thiel <byronimo@gmail.com>2015-06-30 09:30:17 +0200
committerSebastian Thiel <byronimo@gmail.com>2015-06-30 09:30:17 +0200
commitbea9077e8356b103289ba481a48d27e92c63ae7a (patch)
treeb89ed15f7cbd9369f43560409cfa08748757859f /git/repo/base.py
parent195ecc3da4a851734a853af6d739c21b44e0d7f0 (diff)
parent85a45a691ad068a4a25566cc1ed26db09d46daa4 (diff)
downloadgitpython-bea9077e8356b103289ba481a48d27e92c63ae7a.tar.gz
Merge pull request #305 from jonls/fix-doc-clone-from
Fix docstring of Repo.clone_from()
Diffstat (limited to 'git/repo/base.py')
-rw-r--r--git/repo/base.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/git/repo/base.py b/git/repo/base.py
index 88e21379..03ef5a97 100644
--- a/git/repo/base.py
+++ b/git/repo/base.py
@@ -853,6 +853,7 @@ class Repo(object):
@classmethod
def clone_from(cls, url, to_path, progress=None, **kwargs):
"""Create a clone from the given URL
+
:param url: valid git url, see http://www.kernel.org/pub/software/scm/git/docs/git-clone.html#URLS
:param to_path: Path to which the repository should be cloned to
:param progress: See 'git.remote.Remote.push'.