e1b10391ea
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>
77 lines
1.3 KiB
C
77 lines
1.3 KiB
C
/*
|
|
* GIT - The information manager from hell
|
|
*
|
|
* Copyright (C) Eric Biederman, 2005
|
|
*/
|
|
#include "cache.h"
|
|
#include <stdio.h>
|
|
#include <errno.h>
|
|
#include <string.h>
|
|
|
|
static const char var_usage[] = "git-var [-l | <variable>]";
|
|
|
|
struct git_var {
|
|
const char *name;
|
|
char *(*read)(void);
|
|
};
|
|
static struct git_var git_vars[] = {
|
|
{ "GIT_COMMITTER_IDENT", git_committer_info },
|
|
{ "GIT_AUTHOR_IDENT", git_author_info },
|
|
{ "", NULL },
|
|
};
|
|
|
|
static void list_vars(void)
|
|
{
|
|
struct git_var *ptr;
|
|
for(ptr = git_vars; ptr->read; ptr++) {
|
|
printf("%s=%s\n", ptr->name, ptr->read());
|
|
}
|
|
}
|
|
|
|
static const char *read_var(const char *var)
|
|
{
|
|
struct git_var *ptr;
|
|
const char *val;
|
|
val = NULL;
|
|
for(ptr = git_vars; ptr->read; ptr++) {
|
|
if (strcmp(var, ptr->name) == 0) {
|
|
val = ptr->read();
|
|
break;
|
|
}
|
|
}
|
|
return val;
|
|
}
|
|
|
|
static int show_config(const char *var, const char *value)
|
|
{
|
|
if (value)
|
|
printf("%s=%s\n", var, value);
|
|
else
|
|
printf("%s\n", var);
|
|
return git_default_config(var, value);
|
|
}
|
|
|
|
int main(int argc, char **argv)
|
|
{
|
|
const char *val;
|
|
if (argc != 2) {
|
|
usage(var_usage);
|
|
}
|
|
setup_ident();
|
|
val = NULL;
|
|
|
|
if (strcmp(argv[1], "-l") == 0) {
|
|
git_config(show_config);
|
|
list_vars();
|
|
return 0;
|
|
}
|
|
git_config(git_default_config);
|
|
val = read_var(argv[1]);
|
|
if (!val)
|
|
usage(var_usage);
|
|
|
|
printf("%s\n", val);
|
|
|
|
return 0;
|
|
}
|