summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVicent Martí <vicent@github.com>2013-06-11 15:34:53 -0700
committerVicent Martí <vicent@github.com>2013-06-11 15:34:53 -0700
commit5438e9c2b8eeb79c5580c576da6e110aa0cd2e59 (patch)
tree03648965286d2ec4d37a1aa5f49386dd2b39b928
parent9d4db41a8f6d08ad2df611f8c7b0d34021ff7fa8 (diff)
parent76b893b65336722fdee27e1dc8a82eab7ef065ea (diff)
downloadlibgit2-5438e9c2b8eeb79c5580c576da6e110aa0cd2e59.tar.gz
Merge pull request #1645 from csware/config_level_app
Add high(est) config level for application specific config files
-rw-r--r--include/git2/config.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/include/git2/config.h b/include/git2/config.h
index 518dcaf16..59b4307be 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)
*/