Ejemplo n.º 1
0
static int show_reference(const char *refname, const struct object_id *oid, int flag, void *cb_data)
{
	if (ref_excluded(ref_excludes, refname))
		return 0;
	show_rev(NORMAL, oid, refname);
	return 0;
}
Ejemplo n.º 2
0
static int show_reference(const char *refname, const unsigned char *sha1, int flag, void *cb_data)
{
	if (ref_excluded(ref_excludes, refname))
		return 0;
	show_rev(NORMAL, sha1, refname);
	return 0;
}