]> git.ipfire.org Git - thirdparty/git.git/blame - builtin-annotate.c
fast-import: introduce "feature notes" command
[thirdparty/git.git] / builtin-annotate.c
CommitLineData
f789e347
RA
1/*
2 * "git annotate" builtin alias
3 *
4 * Copyright (C) 2006 Ryan Anderson
5 */
6#include "git-compat-util.h"
a19f901d 7#include "builtin.h"
f789e347
RA
8
9int cmd_annotate(int argc, const char **argv, const char *prefix)
10{
11 const char **nargv;
12 int i;
13 nargv = xmalloc(sizeof(char *) * (argc + 2));
14
e68989a7 15 nargv[0] = "annotate";
f789e347
RA
16 nargv[1] = "-c";
17
18 for (i = 1; i < argc; i++) {
19 nargv[i+1] = argv[i];
20 }
21 nargv[argc + 1] = NULL;
22
a19f901d 23 return cmd_blame(argc + 1, nargv, prefix);
f789e347 24}