diff options
| author | Vicent Martà <vicent@github.com> | 2013-06-11 15:34:53 -0700 |
|---|---|---|
| committer | Vicent Martà <vicent@github.com> | 2013-06-11 15:34:53 -0700 |
| commit | 5438e9c2b8eeb79c5580c576da6e110aa0cd2e59 (patch) | |
| tree | 03648965286d2ec4d37a1aa5f49386dd2b39b928 /include/git2 | |
| parent | 9d4db41a8f6d08ad2df611f8c7b0d34021ff7fa8 (diff) | |
| parent | 76b893b65336722fdee27e1dc8a82eab7ef065ea (diff) | |
| download | libgit2-5438e9c2b8eeb79c5580c576da6e110aa0cd2e59.tar.gz | |
Merge pull request #1645 from csware/config_level_app
Add high(est) config level for application specific config files
Diffstat (limited to 'include/git2')
| -rw-r--r-- | include/git2/config.h | 4 |
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) */ |
