Parcourir la source

Formatting; clarify that this is just for basic authentication.

Jelmer Vernooij il y a 2 ans
Parent
commit
3358a4bede
1 fichiers modifiés avec 5 ajouts et 2 suppressions
  1. 5 2
      docs/tutorial/porcelain.txt

+ 5 - 2
docs/tutorial/porcelain.txt

@@ -25,9 +25,12 @@ Clone a repository
 
   >>> porcelain.clone("git://github.com/jelmer/dulwich", "dulwich-clone")
   
-Authentication works using the ``username`` and ``password`` parameters:
+Basic uthentication works using the ``username`` and ``password`` parameters:
 
-  >>> porcelain.clone("https://example.com/a-private-repo.git", "a-private-repo-clone", username="user", password="password")
+  >>> porcelain.clone(
+      "https://example.com/a-private-repo.git",
+      "a-private-repo-clone",
+      username="user", password="password")
 
 Commit changes
 --------------