Explorar el Código

Add config example.

Jelmer Vernooij hace 11 años
padre
commit
ec8a7d495d
Se han modificado 1 ficheros con 13 adiciones y 0 borrados
  1. 13 0
      examples/config.py

+ 13 - 0
examples/config.py

@@ -0,0 +1,13 @@
+#!/usr/bin/python
+# Read the config file for a git repository.
+#
+# Example usage:
+#  python examples/config.py
+
+from dulwich.repo import Repo
+
+repo = Repo(".")
+config = repo.get_config()
+
+print config.get("core", "filemode")
+print config.get(("remote", "origin"), "url")