diff options
author | Petr Baudis <pasky@suse.cz> | 2006-04-25 00:59:33 +0200 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-04-24 22:26:37 -0700 |
commit | 1ab661ddb7eb564c1c3cb97a512257860a651459 (patch) | |
tree | 8a3a5dfcbc5e6803ac859a005b91b4a7bbceb2c3 /config.c | |
parent | 4ee6bc99133760531dd25013c7a7165b2feed9cd (diff) | |
download | git-1ab661ddb7eb564c1c3cb97a512257860a651459.tar.gz |
Document the configuration file
This patch adds a Documentation/config.txt file included by git-repo-config
and currently aggregating hopefully all the available git plumbing / core
porcelain configuration variables, as well as briefly describing the format.
It also updates an outdated bit of the example in git-repo-config(1).
Signed-off-by: Petr Baudis <pasky@suse.cz>
Diffstat (limited to 'config.c')
-rw-r--r-- | config.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -252,7 +252,7 @@ int git_default_config(const char *var, const char *value) return 0; } - /* Add other config variables here.. */ + /* Add other config variables here and to Documentation/config.txt. */ return 0; } |