Browse Source

Add config example.

Jelmer Vernooij 11 years ago
parent
commit
ec8a7d495d
1 changed files with 13 additions and 0 deletions
  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")