Staging
v0.5.1
https://github.com/git/git
Revision b142da2a5dec8f868a61322e2ab591e9a008ec3b authored by Junio C Hamano on 17 October 2009, 06:56:55 UTC, committed by Junio C Hamano on 17 October 2009, 06:57:19 UTC
Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent 050dfc4
Raw File
Tip revision: b142da2a5dec8f868a61322e2ab591e9a008ec3b authored by Junio C Hamano on 17 October 2009, 06:56:55 UTC
GIT 1.6.5.1
Tip revision: b142da2
advice.c
#include "cache.h"

int advice_push_nonfastforward = 1;
int advice_status_hints = 1;

static struct {
	const char *name;
	int *preference;
} advice_config[] = {
	{ "pushnonfastforward", &advice_push_nonfastforward },
	{ "statushints", &advice_status_hints },
};

int git_default_advice_config(const char *var, const char *value)
{
	const char *k = skip_prefix(var, "advice.");
	int i;

	for (i = 0; i < ARRAY_SIZE(advice_config); i++) {
		if (strcmp(k, advice_config[i].name))
			continue;
		*advice_config[i].preference = git_config_bool(var, value);
		return 0;
	}

	return 0;
}
back to top