summaryrefslogtreecommitdiff
path: root/config.c
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@osdl.org>2005-10-12 01:47:34 (GMT)
committerJunio C Hamano <junkio@cox.net>2005-10-12 01:47:34 (GMT)
commite1b10391eabdaaa4c89c53099dd96d5f9d978719 (patch)
tree7405cbb4b0e0b149614f4948d66e316c51f97a49 /config.c
parentec2d15118bd6aa24e9323302e9aaa71dd54bc028 (diff)
downloadgit-e1b10391eabdaaa4c89c53099dd96d5f9d978719.zip
git-e1b10391eabdaaa4c89c53099dd96d5f9d978719.tar.gz
git-e1b10391eabdaaa4c89c53099dd96d5f9d978719.tar.bz2
Use git config file for committer name and email info
This starts using the "user.name" and "user.email" config variables if they exist as the default name and email when committing. This means that you don't have to use the GIT_COMMITTER_EMAIL environment variable to override your email - you can just edit the config file instead. The patch looks bigger than it is because it makes the default name and email information non-static and renames it appropriately. And it moves the common git environment variables into a new library file, so that you can link against libgit.a and get the git environment without having to link in zlib and libcrypt. In short, most of it is renaming and moving, the real change core is just a few new lines in "git_default_config()" that copies the user config values to the new base. It also changes "git-var -l" to list the config variables. Signed-off-by: Linus Torvalds <torvalds@osdl.org> Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'config.c')
-rw-r--r--config.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/config.c b/config.c
index 510456c..cf80358 100644
--- a/config.c
+++ b/config.c
@@ -207,6 +207,16 @@ int git_default_config(const char *var, const char *value)
return 0;
}
+ if (!strcmp(var, "user.name")) {
+ strncpy(git_default_name, value, sizeof(git_default_name));
+ return 0;
+ }
+
+ if (!strcmp(var, "user.email")) {
+ strncpy(git_default_email, value, sizeof(git_default_email));
+ return 0;
+ }
+
/* Add other config variables here.. */
return 0;
}