mirror of
https://github.com/git/git.git
synced 2024-10-31 22:37:54 +01:00
a6080a0a44
This uses "git-apply --whitespace=strip" to fix whitespace errors that have crept in to our source files over time. There are a few files that need to have trailing whitespaces (most notably, test vectors). The results still passes the test, and build result in Documentation/ area is unchanged. Signed-off-by: Junio C Hamano <gitster@pobox.com>
24 lines
446 B
C
24 lines
446 B
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);
|
|
}
|