Staging
v0.5.1
Revision 191a8e32b38c7ff0dd884df7bd323b7a5bd4336c authored by Junio C Hamano on 13 July 2008, 22:23:43 UTC, committed by Junio C Hamano on 13 July 2008, 22:23:43 UTC
Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent 460abee
Raw File
alias.c
#include "cache.h"

static const char *alias_key;
static char *alias_val;

static int alias_lookup_cb(const char *k, const char *v, void *cb)
{
	if (!prefixcmp(k, "alias.") && !strcmp(k+6, alias_key)) {
		if (!v)
			return config_error_nonbool(k);
		alias_val = xstrdup(v);
		return 0;
	}
	return 0;
}

char *alias_lookup(const char *alias)
{
	alias_key = alias;
	alias_val = NULL;
	git_config(alias_lookup_cb, NULL);
	return alias_val;
}
back to top