Преглед на файлове

Formatting; clarify that this is just for basic authentication.

Jelmer Vernooij преди 2 години
родител
ревизия
3358a4bede
променени са 1 файла, в които са добавени 5 реда и са изтрити 2 реда
  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
 --------------