blob: 44374b1d9b6b73b3669f0f851bee058f45ee4f32 [file] [log] [blame]
Junio C Hamano85023572006-12-19 14:34:12 -08001#include "builtin.h"
Thiago Farinafd5c3632010-08-31 23:29:08 -03002#include "exec_cmd.h"
3#include "help.h"
Jeff Kingd8e96fd2009-01-28 02:38:14 -05004#include "run-command.h"
Andreas Ericsson8e49d502005-11-16 00:31:25 +01005
Ramsay Allan Jones822a7d52006-07-30 22:42:25 +01006const char git_usage_string[] =
Nazri Ramliy44e1e4d2013-09-09 21:47:43 +08007 "git [--version] [--help] [-C <path>] [-c name=value]\n"
Kevin Bracey03a0fb02013-03-11 21:44:15 +02008 " [--exec-path[=<path>]] [--html-path] [--man-path] [--info-path]\n"
Alex Henrie9c9b4f22015-01-13 00:44:47 -07009 " [-p | --paginate | --no-pager] [--no-replace-objects] [--bare]\n"
Josh Tripletta1bea2c2011-07-05 10:54:44 -070010 " [--git-dir=<path>] [--work-tree=<path>] [--namespace=<name>]\n"
Štěpán Němec62b46982010-10-08 19:31:15 +020011 " <command> [<args>]";
Ramsay Allan Jones822a7d52006-07-30 22:42:25 +010012
Teemu Likonenb7d96812008-06-06 00:15:36 +030013const char git_more_info_string[] =
Alex Henriead5fe372014-08-30 13:56:01 -060014 N_("'git help -a' and 'git help -g' list available subcommands and some\n"
Philip Oakley73903d02013-04-02 23:39:48 +010015 "concept guides. See 'git help <command>' or 'git help <concept>'\n"
16 "to read about a specific subcommand or concept.");
Teemu Likonenb7d96812008-06-06 00:15:36 +030017
Nguyễn Thái Ngọc Duye37c1322010-08-05 21:40:35 -050018static struct startup_info git_startup_info;
Jeff King4e107382008-07-03 07:46:57 -040019static int use_pager = -1;
Junio C Hamanof6556512014-09-02 13:27:45 -070020static char *orig_cwd;
Nguyễn Thái Ngọc Duyc0562612014-06-08 16:37:10 +070021static const char *env_names[] = {
22 GIT_DIR_ENVIRONMENT,
23 GIT_WORK_TREE_ENVIRONMENT,
24 GIT_IMPLICIT_WORK_TREE_ENVIRONMENT,
25 GIT_PREFIX_ENVIRONMENT
26};
27static char *orig_env[4];
28static int saved_environment;
29
30static void save_env(void)
31{
32 int i;
33 if (saved_environment)
34 return;
35 saved_environment = 1;
Junio C Hamanof6556512014-09-02 13:27:45 -070036 orig_cwd = xgetcwd();
Nguyễn Thái Ngọc Duyc0562612014-06-08 16:37:10 +070037 for (i = 0; i < ARRAY_SIZE(env_names); i++) {
38 orig_env[i] = getenv(env_names[i]);
39 if (orig_env[i])
40 orig_env[i] = xstrdup(orig_env[i]);
41 }
42}
43
44static void restore_env(void)
45{
46 int i;
Junio C Hamanof6556512014-09-02 13:27:45 -070047 if (orig_cwd && chdir(orig_cwd))
Nguyễn Thái Ngọc Duyc0562612014-06-08 16:37:10 +070048 die_errno("could not move to %s", orig_cwd);
Junio C Hamanof6556512014-09-02 13:27:45 -070049 free(orig_cwd);
Nguyễn Thái Ngọc Duyc0562612014-06-08 16:37:10 +070050 for (i = 0; i < ARRAY_SIZE(env_names); i++) {
51 if (orig_env[i])
52 setenv(env_names[i], orig_env[i], 1);
53 else
54 unsetenv(env_names[i]);
55 }
56}
Jeff King4e107382008-07-03 07:46:57 -040057
58static void commit_pager_choice(void) {
59 switch (use_pager) {
60 case 0:
61 setenv("GIT_PAGER", "cat", 1);
62 break;
63 case 1:
64 setup_pager();
65 break;
66 default:
67 break;
68 }
69}
70
Felipe Contreras4b25d092009-05-01 12:06:36 +030071static int handle_options(const char ***argv, int *argc, int *envchanged)
Johannes Schindelin4ab243a2006-07-24 14:10:45 +020072{
Junio C Hamano73546c02011-05-24 18:50:35 -040073 const char **orig_argv = *argv;
Johannes Schindelin4ab243a2006-07-24 14:10:45 +020074
75 while (*argc > 0) {
76 const char *cmd = (*argv)[0];
77 if (cmd[0] != '-')
78 break;
79
Johannes Schindelin6acbcb92006-07-25 20:24:22 +020080 /*
81 * For legacy reasons, the "version" and "help"
82 * commands can be written with "--" prepended
83 * to make them look like flags.
84 */
85 if (!strcmp(cmd, "--help") || !strcmp(cmd, "--version"))
86 break;
87
88 /*
89 * Check remaining flags.
90 */
Jeff Kingae021d82014-06-18 15:47:50 -040091 if (skip_prefix(cmd, "--exec-path", &cmd)) {
Johannes Schindelin6acbcb92006-07-25 20:24:22 +020092 if (*cmd == '=')
Scott R Parish384df832007-10-27 01:36:51 -070093 git_set_argv_exec_path(cmd + 1);
Johannes Schindelin6acbcb92006-07-25 20:24:22 +020094 else {
95 puts(git_exec_path());
96 exit(0);
97 }
Markus Heidelberg89a56bf2009-04-05 04:15:16 +020098 } else if (!strcmp(cmd, "--html-path")) {
99 puts(system_path(GIT_HTML_PATH));
100 exit(0);
Jon Seymourf2dd8c32011-05-01 18:16:25 +1000101 } else if (!strcmp(cmd, "--man-path")) {
102 puts(system_path(GIT_MAN_PATH));
103 exit(0);
104 } else if (!strcmp(cmd, "--info-path")) {
105 puts(system_path(GIT_INFO_PATH));
106 exit(0);
Johannes Schindelin6acbcb92006-07-25 20:24:22 +0200107 } else if (!strcmp(cmd, "-p") || !strcmp(cmd, "--paginate")) {
Jeff King4e107382008-07-03 07:46:57 -0400108 use_pager = 1;
Matthieu Moy463a8492007-08-19 19:24:36 +0200109 } else if (!strcmp(cmd, "--no-pager")) {
Jeff King4e107382008-07-03 07:46:57 -0400110 use_pager = 0;
Matthieu Moy463a8492007-08-19 19:24:36 +0200111 if (envchanged)
112 *envchanged = 1;
Christian Couderb0fa7ab2009-10-12 22:30:32 +0200113 } else if (!strcmp(cmd, "--no-replace-objects")) {
Michael Haggertyafc711b2014-02-18 12:24:55 +0100114 check_replace_refs = 0;
Christian Couder6476b382009-11-18 07:50:58 +0100115 setenv(NO_REPLACE_OBJECTS_ENVIRONMENT, "1", 1);
116 if (envchanged)
117 *envchanged = 1;
Johannes Schindelin6acbcb92006-07-25 20:24:22 +0200118 } else if (!strcmp(cmd, "--git-dir")) {
Brian Gernhardtc321f002006-12-22 08:56:25 -0500119 if (*argc < 2) {
120 fprintf(stderr, "No directory given for --git-dir.\n" );
121 usage(git_usage_string);
122 }
Shawn O. Pearce45b09792006-12-30 23:29:11 -0500123 setenv(GIT_DIR_ENVIRONMENT, (*argv)[1], 1);
Matthias Lederhofer4394efe2007-06-08 22:57:55 +0200124 if (envchanged)
125 *envchanged = 1;
Johannes Schindelin6acbcb92006-07-25 20:24:22 +0200126 (*argv)++;
127 (*argc)--;
Jeff Kingae021d82014-06-18 15:47:50 -0400128 } else if (skip_prefix(cmd, "--git-dir=", &cmd)) {
129 setenv(GIT_DIR_ENVIRONMENT, cmd, 1);
Matthias Lederhofer4394efe2007-06-08 22:57:55 +0200130 if (envchanged)
131 *envchanged = 1;
Josh Tripletta1bea2c2011-07-05 10:54:44 -0700132 } else if (!strcmp(cmd, "--namespace")) {
133 if (*argc < 2) {
134 fprintf(stderr, "No namespace given for --namespace.\n" );
135 usage(git_usage_string);
136 }
137 setenv(GIT_NAMESPACE_ENVIRONMENT, (*argv)[1], 1);
138 if (envchanged)
139 *envchanged = 1;
140 (*argv)++;
141 (*argc)--;
Jeff Kingae021d82014-06-18 15:47:50 -0400142 } else if (skip_prefix(cmd, "--namespace=", &cmd)) {
143 setenv(GIT_NAMESPACE_ENVIRONMENT, cmd, 1);
Josh Tripletta1bea2c2011-07-05 10:54:44 -0700144 if (envchanged)
145 *envchanged = 1;
Matthias Lederhofer892c41b2007-06-06 09:10:42 +0200146 } else if (!strcmp(cmd, "--work-tree")) {
147 if (*argc < 2) {
148 fprintf(stderr, "No directory given for --work-tree.\n" );
149 usage(git_usage_string);
150 }
151 setenv(GIT_WORK_TREE_ENVIRONMENT, (*argv)[1], 1);
Matthias Lederhofer4394efe2007-06-08 22:57:55 +0200152 if (envchanged)
153 *envchanged = 1;
Matthias Lederhofer892c41b2007-06-06 09:10:42 +0200154 (*argv)++;
155 (*argc)--;
Jeff Kingae021d82014-06-18 15:47:50 -0400156 } else if (skip_prefix(cmd, "--work-tree=", &cmd)) {
157 setenv(GIT_WORK_TREE_ENVIRONMENT, cmd, 1);
Matthias Lederhofer4394efe2007-06-08 22:57:55 +0200158 if (envchanged)
159 *envchanged = 1;
Johannes Schindelin6acbcb92006-07-25 20:24:22 +0200160 } else if (!strcmp(cmd, "--bare")) {
René Scharfe4d3ab442014-07-28 20:31:57 +0200161 char *cwd = xgetcwd();
Junio C Hamano6adcca32007-08-27 00:58:06 -0700162 is_bare_repository_cfg = 1;
René Scharfe4d3ab442014-07-28 20:31:57 +0200163 setenv(GIT_DIR_ENVIRONMENT, cwd, 0);
164 free(cwd);
Jeff King2cd83d12013-03-08 04:32:22 -0500165 setenv(GIT_IMPLICIT_WORK_TREE_ENVIRONMENT, "0", 1);
Matthias Lederhofer4394efe2007-06-08 22:57:55 +0200166 if (envchanged)
167 *envchanged = 1;
Alex Riesen8b1fa772010-03-26 23:53:57 +0100168 } else if (!strcmp(cmd, "-c")) {
169 if (*argc < 2) {
170 fprintf(stderr, "-c expects a configuration string\n" );
171 usage(git_usage_string);
172 }
Jeff King2b64fc82010-08-23 15:16:00 -0400173 git_config_push_parameter((*argv)[1]);
Alex Riesen8b1fa772010-03-26 23:53:57 +0100174 (*argv)++;
175 (*argc)--;
Jeff King823ab402012-12-19 17:37:30 -0500176 } else if (!strcmp(cmd, "--literal-pathspecs")) {
177 setenv(GIT_LITERAL_PATHSPECS_ENVIRONMENT, "1", 1);
178 if (envchanged)
179 *envchanged = 1;
180 } else if (!strcmp(cmd, "--no-literal-pathspecs")) {
181 setenv(GIT_LITERAL_PATHSPECS_ENVIRONMENT, "0", 1);
182 if (envchanged)
183 *envchanged = 1;
Nguyễn Thái Ngọc Duybd30c2e2013-07-14 15:36:08 +0700184 } else if (!strcmp(cmd, "--glob-pathspecs")) {
185 setenv(GIT_GLOB_PATHSPECS_ENVIRONMENT, "1", 1);
186 if (envchanged)
187 *envchanged = 1;
188 } else if (!strcmp(cmd, "--noglob-pathspecs")) {
189 setenv(GIT_NOGLOB_PATHSPECS_ENVIRONMENT, "1", 1);
190 if (envchanged)
191 *envchanged = 1;
Nguyễn Thái Ngọc Duy93d93532013-07-14 15:36:09 +0700192 } else if (!strcmp(cmd, "--icase-pathspecs")) {
193 setenv(GIT_ICASE_PATHSPECS_ENVIRONMENT, "1", 1);
194 if (envchanged)
195 *envchanged = 1;
Nguyễn Thái Ngọc Duy6035d6a2013-05-26 08:16:15 +0700196 } else if (!strcmp(cmd, "--shallow-file")) {
197 (*argv)++;
198 (*argc)--;
Nguyễn Thái Ngọc Duy069c0532013-12-05 20:02:45 +0700199 set_alternate_shallow_file((*argv)[0], 1);
Nguyễn Thái Ngọc Duy6035d6a2013-05-26 08:16:15 +0700200 if (envchanged)
201 *envchanged = 1;
Nazri Ramliy44e1e4d2013-09-09 21:47:43 +0800202 } else if (!strcmp(cmd, "-C")) {
203 if (*argc < 2) {
204 fprintf(stderr, "No directory given for -C.\n" );
205 usage(git_usage_string);
206 }
Karthik Nayak6a536e22015-03-06 16:48:08 +0530207 if ((*argv)[1][0]) {
208 if (chdir((*argv)[1]))
209 die_errno("Cannot change to '%s'", (*argv)[1]);
210 if (envchanged)
211 *envchanged = 1;
212 }
Nazri Ramliy44e1e4d2013-09-09 21:47:43 +0800213 (*argv)++;
214 (*argc)--;
Johannes Schindelin6acbcb92006-07-25 20:24:22 +0200215 } else {
216 fprintf(stderr, "Unknown option: %s\n", cmd);
Ramsay Allan Jones822a7d52006-07-30 22:42:25 +0100217 usage(git_usage_string);
Johannes Schindelin6acbcb92006-07-25 20:24:22 +0200218 }
Johannes Schindelin4ab243a2006-07-24 14:10:45 +0200219
220 (*argv)++;
221 (*argc)--;
Johannes Schindelin4ab243a2006-07-24 14:10:45 +0200222 }
Junio C Hamano73546c02011-05-24 18:50:35 -0400223 return (*argv) - orig_argv;
Johannes Schindelin4ab243a2006-07-24 14:10:45 +0200224}
225
Johannes Schindelin2b11e312006-06-05 19:43:52 +0200226static int handle_alias(int *argcp, const char ***argv)
227{
SZEDER Gáboraf05d672008-03-25 22:06:26 +0100228 int envchanged = 0, ret = 0, saved_errno = errno;
Johannes Schindelin2b11e312006-06-05 19:43:52 +0200229 const char *subdir;
Matthias Lederhofer0347a8c2006-07-30 03:30:29 +0200230 int count, option_count;
Felipe Contreras4b25d092009-05-01 12:06:36 +0300231 const char **new_argv;
Jeff King94351112008-02-24 17:17:14 -0500232 const char *alias_command;
233 char *alias_string;
Junio C Hamanoe85dc0a2008-03-31 21:33:09 -0700234 int unused_nongit;
Johannes Schindelin2b11e312006-06-05 19:43:52 +0200235
Junio C Hamanoe85dc0a2008-03-31 21:33:09 -0700236 subdir = setup_git_directory_gently(&unused_nongit);
Johannes Schindelin2b11e312006-06-05 19:43:52 +0200237
Matthias Lederhofer0347a8c2006-07-30 03:30:29 +0200238 alias_command = (*argv)[0];
Jeff King94351112008-02-24 17:17:14 -0500239 alias_string = alias_lookup(alias_command);
Matthias Lederhofer0347a8c2006-07-30 03:30:29 +0200240 if (alias_string) {
Theodore Ts'odfd42a32007-02-10 19:33:58 -0500241 if (alias_string[0] == '!') {
Erik Faye-Lund7f51f8b2011-01-07 00:00:38 +0100242 const char **alias_argv;
243 int argc = *argcp, i;
Johannes Schindelina2f80282007-07-01 22:51:58 +0100244
Erik Faye-Lund7f51f8b2011-01-07 00:00:38 +0100245 commit_pager_choice();
246
247 /* build alias_argv */
248 alias_argv = xmalloc(sizeof(*alias_argv) * (argc + 1));
249 alias_argv[0] = alias_string + 1;
250 for (i = 1; i < argc; ++i)
251 alias_argv[i] = (*argv)[i];
252 alias_argv[argc] = NULL;
253
David Aguilar26b05252011-05-25 20:37:13 -0700254 ret = run_command_v_opt(alias_argv, RUN_USING_SHELL);
Erik Faye-Lund7f51f8b2011-01-07 00:00:38 +0100255 if (ret >= 0) /* normal exit */
256 exit(ret);
257
258 die_errno("While expanding alias '%s': '%s'",
259 alias_command, alias_string + 1);
Theodore Ts'odfd42a32007-02-10 19:33:58 -0500260 }
Matthias Lederhofer0347a8c2006-07-30 03:30:29 +0200261 count = split_cmdline(alias_string, &new_argv);
Deskin Millerdc4179f2008-09-22 11:06:41 -0400262 if (count < 0)
Greg Brockmanad9ac6d2010-08-07 01:13:39 -0400263 die("Bad alias.%s string: %s", alias_command,
264 split_cmdline_strerror(count));
Matthias Lederhofer4394efe2007-06-08 22:57:55 +0200265 option_count = handle_options(&new_argv, &count, &envchanged);
266 if (envchanged)
267 die("alias '%s' changes environment variables\n"
268 "You can use '!git' in the alias to do this.",
269 alias_command);
Matthias Lederhofer0347a8c2006-07-30 03:30:29 +0200270 memmove(new_argv - option_count, new_argv,
271 count * sizeof(char *));
272 new_argv -= option_count;
Johannes Schindelin2b11e312006-06-05 19:43:52 +0200273
Matthias Lederhofer0347a8c2006-07-30 03:30:29 +0200274 if (count < 1)
275 die("empty alias for %s", alias_command);
Johannes Schindelin2b11e312006-06-05 19:43:52 +0200276
Matthias Lederhofer0347a8c2006-07-30 03:30:29 +0200277 if (!strcmp(alias_command, new_argv[0]))
278 die("recursive alias: %s", alias_command);
Johannes Schindelin2b11e312006-06-05 19:43:52 +0200279
Christian Couderb319ce42007-12-03 05:51:50 +0100280 trace_argv_printf(new_argv,
Christian Couder6ce4e612006-09-02 18:23:48 +0200281 "trace: alias expansion: %s =>",
282 alias_command);
Matthias Lederhofer0347a8c2006-07-30 03:30:29 +0200283
René Scharfe2756ca42014-09-16 20:56:57 +0200284 REALLOC_ARRAY(new_argv, count + *argcp);
Matthias Lederhofer0347a8c2006-07-30 03:30:29 +0200285 /* insert after command name */
Felipe Contreras4b25d092009-05-01 12:06:36 +0300286 memcpy(new_argv + count, *argv + 1, sizeof(char *) * *argcp);
Matthias Lederhofer0347a8c2006-07-30 03:30:29 +0200287
288 *argv = new_argv;
289 *argcp += count - 1;
290
291 ret = 1;
Johannes Schindelin2b11e312006-06-05 19:43:52 +0200292 }
293
Alex Riesen7be77de2008-12-05 01:36:46 +0100294 if (subdir && chdir(subdir))
Thomas Rastd824cbb2009-06-27 17:58:46 +0200295 die_errno("Cannot change to '%s'", subdir);
Johannes Schindelin2b11e312006-06-05 19:43:52 +0200296
Johannes Schindelin47e5c0c2006-06-28 12:45:27 +0200297 errno = saved_errno;
298
Johannes Schindelin2b11e312006-06-05 19:43:52 +0200299 return ret;
300}
301
Nguyễn Thái Ngọc Duyee38dfb2010-08-05 21:52:16 -0500302#define RUN_SETUP (1<<0)
303#define RUN_SETUP_GENTLY (1<<1)
304#define USE_PAGER (1<<2)
Shawn O. Pearce7eff28a2006-12-30 23:32:38 -0500305/*
306 * require working tree to be present -- anything uses this needs
307 * RUN_SETUP for reading from the configuration file.
308 */
Nguyễn Thái Ngọc Duyee38dfb2010-08-05 21:52:16 -0500309#define NEED_WORK_TREE (1<<3)
Nguyễn Thái Ngọc Duyc0562612014-06-08 16:37:10 +0700310#define NO_SETUP (1<<4)
Linus Torvaldsa633fca2006-07-28 22:44:25 -0700311
Linus Torvalds47d0b4f2007-06-24 10:10:40 -0700312struct cmd_struct {
313 const char *cmd;
314 int (*fn)(int, const char **, const char *);
315 int option;
316};
317
Jeff Kingf172f332009-01-28 02:33:53 -0500318static int run_builtin(struct cmd_struct *p, int argc, const char **argv)
Linus Torvalds47d0b4f2007-06-24 10:10:40 -0700319{
Jonathan Nieder99caeed2009-11-09 09:05:01 -0600320 int status, help;
Linus Torvalds0f157312007-06-24 10:29:33 -0700321 struct stat st;
Linus Torvalds47d0b4f2007-06-24 10:10:40 -0700322 const char *prefix;
323
324 prefix = NULL;
Jonathan Nieder99caeed2009-11-09 09:05:01 -0600325 help = argc == 2 && !strcmp(argv[1], "-h");
326 if (!help) {
327 if (p->option & RUN_SETUP)
328 prefix = setup_git_directory();
Luis R. Rodriguez27bd38d2014-04-21 17:47:56 -0700329 else if (p->option & RUN_SETUP_GENTLY) {
Nguyễn Thái Ngọc Duyee38dfb2010-08-05 21:52:16 -0500330 int nongit_ok;
331 prefix = setup_git_directory_gently(&nongit_ok);
332 }
Jeff King4e107382008-07-03 07:46:57 -0400333
Nguyễn Thái Ngọc Duyee38dfb2010-08-05 21:52:16 -0500334 if (use_pager == -1 && p->option & (RUN_SETUP | RUN_SETUP_GENTLY))
Jonathan Nieder99caeed2009-11-09 09:05:01 -0600335 use_pager = check_pager_config(p->cmd);
336 if (use_pager == -1 && p->option & USE_PAGER)
337 use_pager = 1;
Nguyễn Thái Ngọc Duya9ca8a82010-11-26 22:31:57 +0700338
339 if ((p->option & (RUN_SETUP | RUN_SETUP_GENTLY)) &&
340 startup_info->have_repository) /* get_git_dir() may set up repo, avoid that */
341 trace_repo_setup(prefix);
Jonathan Nieder99caeed2009-11-09 09:05:01 -0600342 }
Jeff King4e107382008-07-03 07:46:57 -0400343 commit_pager_choice();
344
Jonathan Nieder99caeed2009-11-09 09:05:01 -0600345 if (!help && p->option & NEED_WORK_TREE)
Mike Hommey59f0f2f2007-11-03 12:23:11 +0100346 setup_work_tree();
347
Christian Couderb319ce42007-12-03 05:51:50 +0100348 trace_argv_printf(argv, "trace: built-in: git");
Linus Torvalds47d0b4f2007-06-24 10:10:40 -0700349
Linus Torvalds0f157312007-06-24 10:29:33 -0700350 status = p->fn(argc, argv, prefix);
351 if (status)
Johannes Sixt47e3de02009-07-05 20:57:46 +0200352 return status;
Linus Torvalds0f157312007-06-24 10:29:33 -0700353
354 /* Somebody closed stdout? */
355 if (fstat(fileno(stdout), &st))
356 return 0;
357 /* Ignore write errors for pipes and sockets.. */
358 if (S_ISFIFO(st.st_mode) || S_ISSOCK(st.st_mode))
359 return 0;
360
361 /* Check for ENOSPC and EIO errors.. */
Linus Torvalds0227f982007-06-30 11:44:20 -0700362 if (fflush(stdout))
Thomas Rastd824cbb2009-06-27 17:58:46 +0200363 die_errno("write failure on standard output");
Linus Torvalds0227f982007-06-30 11:44:20 -0700364 if (ferror(stdout))
365 die("unknown write failure on standard output");
366 if (fclose(stdout))
Thomas Rastd824cbb2009-06-27 17:58:46 +0200367 die_errno("close failed on standard output");
Linus Torvalds0f157312007-06-24 10:29:33 -0700368 return 0;
Linus Torvalds47d0b4f2007-06-24 10:10:40 -0700369}
370
Sebastian Schuberthc6127fa2014-01-02 17:17:11 +0100371static struct cmd_struct commands[] = {
372 { "add", cmd_add, RUN_SETUP | NEED_WORK_TREE },
373 { "annotate", cmd_annotate, RUN_SETUP },
374 { "apply", cmd_apply, RUN_SETUP_GENTLY },
375 { "archive", cmd_archive },
376 { "bisect--helper", cmd_bisect__helper, RUN_SETUP },
377 { "blame", cmd_blame, RUN_SETUP },
378 { "branch", cmd_branch, RUN_SETUP },
379 { "bundle", cmd_bundle, RUN_SETUP_GENTLY },
380 { "cat-file", cmd_cat_file, RUN_SETUP },
381 { "check-attr", cmd_check_attr, RUN_SETUP },
382 { "check-ignore", cmd_check_ignore, RUN_SETUP | NEED_WORK_TREE },
383 { "check-mailmap", cmd_check_mailmap, RUN_SETUP },
384 { "check-ref-format", cmd_check_ref_format },
Dennis Kaarsemaker3473ad02014-11-30 15:24:56 +0700385 { "checkout", cmd_checkout, RUN_SETUP },
Sebastian Schuberthc6127fa2014-01-02 17:17:11 +0100386 { "checkout-index", cmd_checkout_index,
387 RUN_SETUP | NEED_WORK_TREE},
388 { "cherry", cmd_cherry, RUN_SETUP },
389 { "cherry-pick", cmd_cherry_pick, RUN_SETUP | NEED_WORK_TREE },
390 { "clean", cmd_clean, RUN_SETUP | NEED_WORK_TREE },
Nguyễn Thái Ngọc Duyc0562612014-06-08 16:37:10 +0700391 { "clone", cmd_clone, NO_SETUP },
Sebastian Schuberthc6127fa2014-01-02 17:17:11 +0100392 { "column", cmd_column, RUN_SETUP_GENTLY },
393 { "commit", cmd_commit, RUN_SETUP | NEED_WORK_TREE },
394 { "commit-tree", cmd_commit_tree, RUN_SETUP },
395 { "config", cmd_config, RUN_SETUP_GENTLY },
396 { "count-objects", cmd_count_objects, RUN_SETUP },
397 { "credential", cmd_credential, RUN_SETUP_GENTLY },
398 { "describe", cmd_describe, RUN_SETUP },
399 { "diff", cmd_diff },
400 { "diff-files", cmd_diff_files, RUN_SETUP | NEED_WORK_TREE },
401 { "diff-index", cmd_diff_index, RUN_SETUP },
402 { "diff-tree", cmd_diff_tree, RUN_SETUP },
403 { "fast-export", cmd_fast_export, RUN_SETUP },
404 { "fetch", cmd_fetch, RUN_SETUP },
405 { "fetch-pack", cmd_fetch_pack, RUN_SETUP },
406 { "fmt-merge-msg", cmd_fmt_merge_msg, RUN_SETUP },
407 { "for-each-ref", cmd_for_each_ref, RUN_SETUP },
408 { "format-patch", cmd_format_patch, RUN_SETUP },
409 { "fsck", cmd_fsck, RUN_SETUP },
410 { "fsck-objects", cmd_fsck, RUN_SETUP },
411 { "gc", cmd_gc, RUN_SETUP },
412 { "get-tar-commit-id", cmd_get_tar_commit_id },
413 { "grep", cmd_grep, RUN_SETUP_GENTLY },
414 { "hash-object", cmd_hash_object },
415 { "help", cmd_help },
416 { "index-pack", cmd_index_pack, RUN_SETUP_GENTLY },
Nguyễn Thái Ngọc Duyc0562612014-06-08 16:37:10 +0700417 { "init", cmd_init_db, NO_SETUP },
418 { "init-db", cmd_init_db, NO_SETUP },
Christian Couder6634f052014-10-13 20:16:29 +0200419 { "interpret-trailers", cmd_interpret_trailers, RUN_SETUP },
Sebastian Schuberthc6127fa2014-01-02 17:17:11 +0100420 { "log", cmd_log, RUN_SETUP },
421 { "ls-files", cmd_ls_files, RUN_SETUP },
422 { "ls-remote", cmd_ls_remote, RUN_SETUP_GENTLY },
423 { "ls-tree", cmd_ls_tree, RUN_SETUP },
424 { "mailinfo", cmd_mailinfo },
425 { "mailsplit", cmd_mailsplit },
426 { "merge", cmd_merge, RUN_SETUP | NEED_WORK_TREE },
427 { "merge-base", cmd_merge_base, RUN_SETUP },
428 { "merge-file", cmd_merge_file, RUN_SETUP_GENTLY },
429 { "merge-index", cmd_merge_index, RUN_SETUP },
430 { "merge-ours", cmd_merge_ours, RUN_SETUP },
431 { "merge-recursive", cmd_merge_recursive, RUN_SETUP | NEED_WORK_TREE },
432 { "merge-recursive-ours", cmd_merge_recursive, RUN_SETUP | NEED_WORK_TREE },
433 { "merge-recursive-theirs", cmd_merge_recursive, RUN_SETUP | NEED_WORK_TREE },
434 { "merge-subtree", cmd_merge_recursive, RUN_SETUP | NEED_WORK_TREE },
435 { "merge-tree", cmd_merge_tree, RUN_SETUP },
436 { "mktag", cmd_mktag, RUN_SETUP },
437 { "mktree", cmd_mktree, RUN_SETUP },
438 { "mv", cmd_mv, RUN_SETUP | NEED_WORK_TREE },
439 { "name-rev", cmd_name_rev, RUN_SETUP },
440 { "notes", cmd_notes, RUN_SETUP },
441 { "pack-objects", cmd_pack_objects, RUN_SETUP },
442 { "pack-redundant", cmd_pack_redundant, RUN_SETUP },
443 { "pack-refs", cmd_pack_refs, RUN_SETUP },
444 { "patch-id", cmd_patch_id },
445 { "pickaxe", cmd_blame, RUN_SETUP },
446 { "prune", cmd_prune, RUN_SETUP },
447 { "prune-packed", cmd_prune_packed, RUN_SETUP },
448 { "push", cmd_push, RUN_SETUP },
449 { "read-tree", cmd_read_tree, RUN_SETUP },
450 { "receive-pack", cmd_receive_pack },
451 { "reflog", cmd_reflog, RUN_SETUP },
452 { "remote", cmd_remote, RUN_SETUP },
453 { "remote-ext", cmd_remote_ext },
454 { "remote-fd", cmd_remote_fd },
455 { "repack", cmd_repack, RUN_SETUP },
456 { "replace", cmd_replace, RUN_SETUP },
457 { "rerere", cmd_rerere, RUN_SETUP },
458 { "reset", cmd_reset, RUN_SETUP },
459 { "rev-list", cmd_rev_list, RUN_SETUP },
460 { "rev-parse", cmd_rev_parse },
461 { "revert", cmd_revert, RUN_SETUP | NEED_WORK_TREE },
462 { "rm", cmd_rm, RUN_SETUP },
463 { "send-pack", cmd_send_pack, RUN_SETUP },
464 { "shortlog", cmd_shortlog, RUN_SETUP_GENTLY | USE_PAGER },
465 { "show", cmd_show, RUN_SETUP },
466 { "show-branch", cmd_show_branch, RUN_SETUP },
467 { "show-ref", cmd_show_ref, RUN_SETUP },
468 { "stage", cmd_add, RUN_SETUP | NEED_WORK_TREE },
469 { "status", cmd_status, RUN_SETUP | NEED_WORK_TREE },
470 { "stripspace", cmd_stripspace },
471 { "symbolic-ref", cmd_symbolic_ref, RUN_SETUP },
472 { "tag", cmd_tag, RUN_SETUP },
473 { "unpack-file", cmd_unpack_file, RUN_SETUP },
474 { "unpack-objects", cmd_unpack_objects, RUN_SETUP },
475 { "update-index", cmd_update_index, RUN_SETUP },
476 { "update-ref", cmd_update_ref, RUN_SETUP },
477 { "update-server-info", cmd_update_server_info, RUN_SETUP },
478 { "upload-archive", cmd_upload_archive },
479 { "upload-archive--writer", cmd_upload_archive_writer },
480 { "var", cmd_var, RUN_SETUP_GENTLY },
Michael J Gruberd07b00b2014-06-23 09:05:49 +0200481 { "verify-commit", cmd_verify_commit, RUN_SETUP },
Sebastian Schuberthc6127fa2014-01-02 17:17:11 +0100482 { "verify-pack", cmd_verify_pack },
483 { "verify-tag", cmd_verify_tag, RUN_SETUP },
484 { "version", cmd_version },
485 { "whatchanged", cmd_whatchanged, RUN_SETUP },
486 { "write-tree", cmd_write_tree, RUN_SETUP },
487};
488
Slavomir Vlcekc4f901d2014-11-12 14:10:22 +0100489static struct cmd_struct *get_builtin(const char *s)
Sebastian Schuberthc6127fa2014-01-02 17:17:11 +0100490{
491 int i;
492 for (i = 0; i < ARRAY_SIZE(commands); i++) {
Slavomir Vlcekc4f901d2014-11-12 14:10:22 +0100493 struct cmd_struct *p = commands + i;
Sebastian Schuberthc6127fa2014-01-02 17:17:11 +0100494 if (!strcmp(s, p->cmd))
Slavomir Vlcekc4f901d2014-11-12 14:10:22 +0100495 return p;
Sebastian Schuberthc6127fa2014-01-02 17:17:11 +0100496 }
Slavomir Vlcekc4f901d2014-11-12 14:10:22 +0100497 return NULL;
498}
499
500int is_builtin(const char *s)
501{
502 return !!get_builtin(s);
Sebastian Schuberthc6127fa2014-01-02 17:17:11 +0100503}
504
Sebastian Schuberth3f784a42014-01-02 17:15:44 +0100505static void handle_builtin(int argc, const char **argv)
Linus Torvalds231af832006-02-26 12:34:51 -0800506{
507 const char *cmd = argv[0];
Linus Torvalds231af832006-02-26 12:34:51 -0800508 int i;
Johannes Sixt23326d12007-12-08 20:57:25 +0100509 static const char ext[] = STRIP_EXTENSION;
Slavomir Vlcekc4f901d2014-11-12 14:10:22 +0100510 struct cmd_struct *builtin;
Johannes Sixt23326d12007-12-08 20:57:25 +0100511
512 if (sizeof(ext) > 1) {
513 i = strlen(argv[0]) - strlen(ext);
514 if (i > 0 && !strcmp(argv[0] + i, ext)) {
Dotan Barake8eec712008-09-09 21:57:10 +0300515 char *argv0 = xstrdup(argv[0]);
Johannes Sixt23326d12007-12-08 20:57:25 +0100516 argv[0] = cmd = argv0;
517 argv0[i] = '\0';
518 }
519 }
Linus Torvalds231af832006-02-26 12:34:51 -0800520
Linus Torvalds1cd95082006-04-15 11:13:49 -0700521 /* Turn "git cmd --help" into "git help cmd" */
522 if (argc > 1 && !strcmp(argv[1], "--help")) {
523 argv[1] = argv[0];
524 argv[0] = cmd = "help";
525 }
526
Slavomir Vlcekc4f901d2014-11-12 14:10:22 +0100527 builtin = get_builtin(cmd);
528 if (builtin) {
529 if (saved_environment && (builtin->option & NO_SETUP))
Nguyễn Thái Ngọc Duyc0562612014-06-08 16:37:10 +0700530 restore_env();
Slavomir Vlcekc4f901d2014-11-12 14:10:22 +0100531 else
532 exit(run_builtin(builtin, argc, argv));
Linus Torvalds231af832006-02-26 12:34:51 -0800533 }
534}
535
Junio C Hamano7550be02007-12-01 22:09:22 -0800536static void execv_dashed_external(const char **argv)
537{
Brandon Caseyf285a2d2008-10-09 14:12:12 -0500538 struct strbuf cmd = STRBUF_INIT;
Junio C Hamano7550be02007-12-01 22:09:22 -0800539 const char *tmp;
Jeff Kingd8e96fd2009-01-28 02:38:14 -0500540 int status;
Junio C Hamano7550be02007-12-01 22:09:22 -0800541
Jeff King92058e42011-08-18 15:01:32 -0700542 if (use_pager == -1)
543 use_pager = check_pager_config(argv[0]);
Jonathan Nieder030149a2010-07-14 17:55:12 -0500544 commit_pager_choice();
545
Junio C Hamano7550be02007-12-01 22:09:22 -0800546 strbuf_addf(&cmd, "git-%s", argv[0]);
547
548 /*
549 * argv[0] must be the git command, but the argv array
550 * belongs to the caller, and may be reused in
551 * subsequent loop iterations. Save argv[0] and
552 * restore it on error.
553 */
554 tmp = argv[0];
555 argv[0] = cmd.buf;
556
557 trace_argv_printf(argv, "trace: exec:");
558
Jeff Kingd8e96fd2009-01-28 02:38:14 -0500559 /*
560 * if we fail because the command is not found, it is
561 * OK to return. Otherwise, we just pass along the status code.
562 */
Clemens Buchacher10c6cdd2012-01-08 21:41:09 +0100563 status = run_command_v_opt(argv, RUN_SILENT_EXEC_FAILURE | RUN_CLEAN_ON_EXIT);
Johannes Sixt0ac77ec2009-07-04 21:26:40 +0200564 if (status >= 0 || errno != ENOENT)
Johannes Sixt5709e032009-07-04 21:26:39 +0200565 exit(status);
Junio C Hamano7550be02007-12-01 22:09:22 -0800566
567 argv[0] = tmp;
568
569 strbuf_release(&cmd);
570}
571
Adeodato Simóa907e1b2009-01-04 18:16:01 +0100572static int run_argv(int *argcp, const char ***argv)
573{
574 int done_alias = 0;
575
576 while (1) {
Sebastian Schuberth3f784a42014-01-02 17:15:44 +0100577 /* See if it's a builtin */
578 handle_builtin(*argcp, *argv);
Adeodato Simóa907e1b2009-01-04 18:16:01 +0100579
580 /* .. then try the external ones */
581 execv_dashed_external(*argv);
582
583 /* It could be an alias -- this works around the insanity
584 * of overriding "git log" with "git show" by having
585 * alias.log = show
586 */
Nguyễn Thái Ngọc Duyc0562612014-06-08 16:37:10 +0700587 if (done_alias)
588 break;
589 save_env();
590 if (!handle_alias(argcp, argv))
Adeodato Simóa907e1b2009-01-04 18:16:01 +0100591 break;
592 done_alias = 1;
593 }
594
595 return done_alias;
596}
597
Patrick Reynolds7559a1b2014-09-18 11:57:09 -0500598/*
599 * Many parts of Git have subprograms communicate via pipe, expect the
600 * upstream of a pipe to die with SIGPIPE when the downstream of a
601 * pipe does not need to read all that is written. Some third-party
602 * programs that ignore or block SIGPIPE for their own reason forget
603 * to restore SIGPIPE handling to the default before spawning Git and
604 * break this carefully orchestrated machinery.
605 *
606 * Restore the way SIGPIPE is handled to default, which is what we
607 * expect.
608 */
609static void restore_sigpipe_to_default(void)
610{
611 sigset_t unblock;
612
613 sigemptyset(&unblock);
614 sigaddset(&unblock, SIGPIPE);
615 sigprocmask(SIG_UNBLOCK, &unblock, NULL);
616 signal(SIGPIPE, SIG_DFL);
617}
Junio C Hamano7550be02007-12-01 22:09:22 -0800618
Ramsay Jones84d32bf2013-04-27 20:19:47 +0100619int main(int argc, char **av)
Andreas Ericsson8e49d502005-11-16 00:31:25 +0100620{
Ramsay Jones84d32bf2013-04-27 20:19:47 +0100621 const char **argv = (const char **) av;
Steve Haslam4dd47c32009-01-18 13:00:10 +0100622 const char *cmd;
Alexander Kuleshov8fa79752015-03-02 18:02:37 +0600623 int done_help = 0;
Andreas Ericsson8e49d502005-11-16 00:31:25 +0100624
Nguyễn Thái Ngọc Duye37c1322010-08-05 21:40:35 -0500625 startup_info = &git_startup_info;
626
Steffen Prohaska2cd72b02009-01-18 13:00:11 +0100627 cmd = git_extract_argv0_path(argv[0]);
628 if (!cmd)
Steve Haslam4dd47c32009-01-18 13:00:10 +0100629 cmd = "git-help";
Andreas Ericsson8e49d502005-11-16 00:31:25 +0100630
Thomas Rasta11c3962013-07-16 11:27:37 +0200631 /*
632 * Always open file descriptors 0/1/2 to avoid clobbering files
633 * in die(). It also avoids messing up when the pipes are dup'ed
634 * onto stdin/stdout/stderr in the child processes we spawn.
635 */
636 sanitize_stdfds();
637
Patrick Reynolds7559a1b2014-09-18 11:57:09 -0500638 restore_sigpipe_to_default();
639
Ævar Arnfjörð Bjarmason5e9637c2011-11-18 00:14:42 +0100640 git_setup_gettext();
641
Karsten Blees578da032014-07-12 02:07:01 +0200642 trace_command_performance(argv);
643
Linus Torvalds231af832006-02-26 12:34:51 -0800644 /*
645 * "git-xxxx" is the same as "git xxxx", but we obviously:
646 *
647 * - cannot take flags in between the "git" and the "xxxx".
648 * - cannot execute it externally (since it would just do
649 * the same thing over again)
650 *
Sebastian Schuberth3f784a42014-01-02 17:15:44 +0100651 * So we just directly call the builtin handler, and die if
652 * that one cannot handle it.
Linus Torvalds231af832006-02-26 12:34:51 -0800653 */
Jeff Kingae021d82014-06-18 15:47:50 -0400654 if (skip_prefix(cmd, "git-", &cmd)) {
Linus Torvalds231af832006-02-26 12:34:51 -0800655 argv[0] = cmd;
Sebastian Schuberth3f784a42014-01-02 17:15:44 +0100656 handle_builtin(argc, argv);
657 die("cannot handle %s as a builtin", cmd);
Linus Torvalds231af832006-02-26 12:34:51 -0800658 }
Andreas Ericsson8e49d502005-11-16 00:31:25 +0100659
Linus Torvalds231af832006-02-26 12:34:51 -0800660 /* Look for flags.. */
Johannes Schindelin6acbcb92006-07-25 20:24:22 +0200661 argv++;
662 argc--;
Matthias Lederhofer4394efe2007-06-08 22:57:55 +0200663 handle_options(&argv, &argc, NULL);
Johannes Schindelin6acbcb92006-07-25 20:24:22 +0200664 if (argc > 0) {
Jeff King6d877802014-06-18 15:56:48 -0400665 /* translate --help and --version into commands */
666 skip_prefix(argv[0], "--", &argv[0]);
Johannes Schindelin6acbcb92006-07-25 20:24:22 +0200667 } else {
Scott R Parish3d7e2d82007-10-27 01:36:49 -0700668 /* The user didn't specify a command; give them help */
Nguyễn Thái Ngọc Duy73e25e72010-06-26 14:26:37 -0500669 commit_pager_choice();
Scott R Parish3d7e2d82007-10-27 01:36:49 -0700670 printf("usage: %s\n\n", git_usage_string);
671 list_common_cmds_help();
Kevin Bracey421a9762013-03-10 17:10:20 +0200672 printf("\n%s\n", _(git_more_info_string));
Scott R Parish3d7e2d82007-10-27 01:36:49 -0700673 exit(1);
Andreas Ericsson8e49d502005-11-16 00:31:25 +0100674 }
Johannes Schindelin6acbcb92006-07-25 20:24:22 +0200675 cmd = argv[0];
Andreas Ericsson8e49d502005-11-16 00:31:25 +0100676
Linus Torvalds231af832006-02-26 12:34:51 -0800677 /*
Scott R Parish511707d2007-10-28 04:17:20 -0700678 * We use PATH to find git commands, but we prepend some higher
Mike Ralphson3ea3c212009-04-17 19:13:30 +0100679 * precedence paths: the "--exec-path" option, the GIT_EXEC_PATH
Scott R Parish511707d2007-10-28 04:17:20 -0700680 * environment, and the $(gitexecdir) from the Makefile at build
681 * time.
Linus Torvalds231af832006-02-26 12:34:51 -0800682 */
Johannes Sixte1464ca2008-07-21 21:19:52 +0200683 setup_path();
Junio C Hamano7dbc2c02005-11-15 23:13:30 -0800684
Junio C Hamanoa0254632006-06-05 18:09:40 -0700685 while (1) {
Alexander Kuleshov8fa79752015-03-02 18:02:37 +0600686 int was_alias = run_argv(&argc, &argv);
Adeodato Simóa907e1b2009-01-04 18:16:01 +0100687 if (errno != ENOENT)
Junio C Hamanoa0254632006-06-05 18:09:40 -0700688 break;
Adeodato Simóa907e1b2009-01-04 18:16:01 +0100689 if (was_alias) {
Theodore Ts'of3dd0152007-02-10 19:33:57 -0500690 fprintf(stderr, "Expansion of alias '%s' failed; "
Pete Harlan7283bbc2010-02-15 15:33:18 -0800691 "'%s' is not a git command\n",
Theodore Ts'of3dd0152007-02-10 19:33:57 -0500692 cmd, argv[0]);
693 exit(1);
694 }
Adeodato Simóa907e1b2009-01-04 18:16:01 +0100695 if (!done_help) {
696 cmd = argv[0] = help_unknown_cmd(cmd);
697 done_help = 1;
698 } else
699 break;
Theodore Ts'of3dd0152007-02-10 19:33:57 -0500700 }
Alex Riesen10b15b82005-12-01 13:48:35 +0100701
702 fprintf(stderr, "Failed to run command '%s': %s\n",
Andreas Ericsson33ebb872006-06-28 02:17:21 -0700703 cmd, strerror(errno));
Andreas Ericsson8e49d502005-11-16 00:31:25 +0100704
705 return 1;
706}