Staging
v0.5.2
https://github.com/git/git
Revision 39556fbdadaacf67330bc1464e0172468e9c3a5e authored by Nicolas Pitre on 10 February 2006, 18:42:05 UTC, committed by Junio C Hamano on 10 February 2006, 19:42:56 UTC
My kernel work habit made me look at the generated assembly for the
delta code, and one obvious albeit small improvement is this patch.

Signed-off-by: Nicolas Pitre <nico@cam.org>
Signed-off-by: Junio C Hamano <junkio@cox.net>
1 parent e7ad4a9
Raw File
Tip revision: 39556fbdadaacf67330bc1464e0172468e9c3a5e authored by Nicolas Pitre on 10 February 2006, 18:42:05 UTC
delta micro optimization
Tip revision: 39556fb
update-server-info.c
#include "cache.h"

static const char update_server_info_usage[] =
"git-update-server-info [--force]";

int main(int ac, char **av)
{
	int i;
	int force = 0;
	for (i = 1; i < ac; i++) {
		if (av[i][0] == '-') {
			if (!strcmp("--force", av[i]) ||
			    !strcmp("-f", av[i]))
				force = 1;
			else
				usage(update_server_info_usage);
		}
	}
	if (i != ac)
		usage(update_server_info_usage);

	setup_git_directory();

	return !!update_server_info(force);
}
back to top