Pārlūkot izejas kodu

update docstrings

Peter Rowlands 4 gadi atpakaļ
vecāks
revīzija
3de1f80190
1 mainītis faili ar 3 papildinājumiem un 10 dzēšanām
  1. 3 10
      dulwich/repo.py

+ 3 - 10
dulwich/repo.py

@@ -1380,8 +1380,11 @@ class Repo(BaseRepo):
           target_path: Target path
           mkdir: Create the target directory
           bare: Whether to create a bare repository
+          checkout: Whether or not to check-out HEAD after cloning
           origin: Base name for refs in target repository
             cloned from this repository
+          branch: Optional branch or tag to be used as HEAD in the new repository
+            instead of this repository's HEAD.
         Returns: Created repository as `Repo`
         """
 
@@ -1428,16 +1431,6 @@ class Repo(BaseRepo):
         errstream=None,
         branch=None,
     ):
-        """Clone this repository.
-
-        Args:
-          target_path: Target path
-          mkdir: Create the target directory
-          bare: Whether to create a bare repository
-          origin: Base name for refs in target repository
-            cloned from this repository
-        Returns: Created repository as `Repo`
-        """
         if not clone_refs:
             raise ValueError("clone_refs callback is required")