Commit 5438e9c2b8eeb79c5580c576da6e110aa0cd2e59

Vicent Martí 2013-06-11T15:34:53

Merge pull request #1645 from csware/config_level_app Add high(est) config level for application specific config files

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
diff --git a/include/git2/config.h b/include/git2/config.h
index 518dcaf..59b4307 100644
--- a/include/git2/config.h
+++ b/include/git2/config.h
@@ -44,6 +44,10 @@ typedef enum {
 	 */
 	GIT_CONFIG_LEVEL_LOCAL = 4,
 
+	/** Application specific configuration file; freely defined by applications
+	 */
+	GIT_CONFIG_LEVEL_APP = 5,
+
 	/** Represents the highest level available config file (i.e. the most
 	 * specific config file available that actually is loaded)
 	 */