aboutsummaryrefslogtreecommitdiff
path: root/config.c
diff options
context:
space:
mode:
authorJunio C Hamano <junkio@cox.net>2005-11-27 16:09:40 -0800
committerJunio C Hamano <junkio@cox.net>2005-11-27 16:09:40 -0800
commit4e72dcec89c7cda7022d4ec2dd686e77deb5376e (patch)
treedfac5ab58034e7129ba0d8096ca2bb6857df2242 /config.c
parent55d1eb047d4dffc633502ea2a80dd092194fc900 (diff)
downloadgit-4e72dcec89c7cda7022d4ec2dd686e77deb5376e.tar.gz
git-4e72dcec89c7cda7022d4ec2dd686e77deb5376e.tar.xz
Introduce i18n.commitencoding.
This is to hold what the project-local rule as to the charset/encoding for the commit log message is. Lack of it defaults to utf-8. Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'config.c')
-rw-r--r--config.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/config.c b/config.c
index 0c43d7615..152fa282f 100644
--- a/config.c
+++ b/config.c
@@ -237,6 +237,11 @@ int git_default_config(const char *var, const char *value)
return 0;
}
+ if (!strcmp(var, "i18n.commitencoding")) {
+ strncpy(git_commit_encoding, value, sizeof(git_commit_encoding));
+ return 0;
+ }
+
/* Add other config variables here.. */
return 0;
}