Staging
v0.5.1
https://github.com/git/git
Revision 4280cde95fa4e3fb012eb6d0c239a7777baaf60c authored by Martin Koegler on 23 April 2007, 05:49:25 UTC, committed by Junio C Hamano on 23 April 2007, 05:49:25 UTC
Currently, gitweb shows only header and footer, if no differences are
found. This patch adds a "No differences found" message for the html
output.

Signed-off-by: Martin Koegler <mkoegler@auto.tuwien.ac.at>
Signed-off-by: Jakub Narebski <jnareb@gmail.com>
Signed-off-by: Junio C Hamano <junkio@cox.net>
1 parent 55a9137
Raw File
Tip revision: 4280cde95fa4e3fb012eb6d0c239a7777baaf60c authored by Martin Koegler on 23 April 2007, 05:49:25 UTC
gitweb: Show "no difference" message for empty diff
Tip revision: 4280cde
builtin-annotate.c
/*
 * "git annotate" builtin alias
 *
 * Copyright (C) 2006 Ryan Anderson
 */
#include "git-compat-util.h"
#include "builtin.h"

int cmd_annotate(int argc, const char **argv, const char *prefix)
{
	const char **nargv;
	int i;
	nargv = xmalloc(sizeof(char *) * (argc + 2));

	nargv[0] = "annotate";
	nargv[1] = "-c";

	for (i = 1; i < argc; i++) {
		nargv[i+1] = argv[i];
	}
	nargv[argc + 1] = NULL;

	return cmd_blame(argc + 1, nargv, prefix);
}

back to top