Browse Source

Formatting; clarify that this is just for basic authentication.

Jelmer Vernooij 2 years ago
parent
commit
3358a4bede
1 changed files with 5 additions and 2 deletions
  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
 --------------