blob: 50e559c2a81db071b12a7b9d07840105b175db84 [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
Jeff King4e107382008-07-03 07:46:57 -040018static int use_pager = -1;
Junio C Hamanof6556512014-09-02 13:27:45 -070019static char *orig_cwd;
Nguyễn Thái Ngọc Duyc0562612014-06-08 16:37:10 +070020static const char *env_names[] = {
21 GIT_DIR_ENVIRONMENT,
22 GIT_WORK_TREE_ENVIRONMENT,
23 GIT_IMPLICIT_WORK_TREE_ENVIRONMENT,
24 GIT_PREFIX_ENVIRONMENT
25};
26static char *orig_env[4];
Junio C Hamano2e1175d2016-01-26 22:50:27 -080027static int save_restore_env_balance;
Nguyễn Thái Ngọc Duyc0562612014-06-08 16:37:10 +070028
Nguyễn Thái Ngọc Duy0d5466d2015-12-03 19:17:55 +010029static void save_env_before_alias(void)
Nguyễn Thái Ngọc Duyc0562612014-06-08 16:37:10 +070030{
31 int i;
Junio C Hamano2e1175d2016-01-26 22:50:27 -080032
33 assert(save_restore_env_balance == 0);
34 save_restore_env_balance = 1;
Junio C Hamanof6556512014-09-02 13:27:45 -070035 orig_cwd = xgetcwd();
Nguyễn Thái Ngọc Duyc0562612014-06-08 16:37:10 +070036 for (i = 0; i < ARRAY_SIZE(env_names); i++) {
37 orig_env[i] = getenv(env_names[i]);
Junio C Hamano13092a92016-10-12 11:20:23 -070038 orig_env[i] = xstrdup_or_null(orig_env[i]);
Nguyễn Thái Ngọc Duyc0562612014-06-08 16:37:10 +070039 }
40}
41
Nguyễn Thái Ngọc Duy57ea7122015-12-20 14:50:19 +070042static void restore_env(int external_alias)
Nguyễn Thái Ngọc Duyc0562612014-06-08 16:37:10 +070043{
44 int i;
Junio C Hamano2e1175d2016-01-26 22:50:27 -080045
46 assert(save_restore_env_balance == 1);
47 save_restore_env_balance = 0;
Nguyễn Thái Ngọc Duy57ea7122015-12-20 14:50:19 +070048 if (!external_alias && orig_cwd && chdir(orig_cwd))
Nguyễn Thái Ngọc Duyc0562612014-06-08 16:37:10 +070049 die_errno("could not move to %s", orig_cwd);
Junio C Hamanof6556512014-09-02 13:27:45 -070050 free(orig_cwd);
Nguyễn Thái Ngọc Duyc0562612014-06-08 16:37:10 +070051 for (i = 0; i < ARRAY_SIZE(env_names); i++) {
Nguyễn Thái Ngọc Duy57ea7122015-12-20 14:50:19 +070052 if (external_alias &&
53 !strcmp(env_names[i], GIT_PREFIX_ENVIRONMENT))
54 continue;
Junio C Hamano8384c132016-02-02 15:42:59 -080055 if (orig_env[i]) {
Nguyễn Thái Ngọc Duyc0562612014-06-08 16:37:10 +070056 setenv(env_names[i], orig_env[i], 1);
Junio C Hamano8384c132016-02-02 15:42:59 -080057 free(orig_env[i]);
58 } else {
Nguyễn Thái Ngọc Duyc0562612014-06-08 16:37:10 +070059 unsetenv(env_names[i]);
Junio C Hamano8384c132016-02-02 15:42:59 -080060 }
Nguyễn Thái Ngọc Duyc0562612014-06-08 16:37:10 +070061 }
62}
Jeff King4e107382008-07-03 07:46:57 -040063
64static void commit_pager_choice(void) {
65 switch (use_pager) {
66 case 0:
67 setenv("GIT_PAGER", "cat", 1);
68 break;
69 case 1:
70 setup_pager();
71 break;
72 default:
73 break;
74 }
75}
76
Felipe Contreras4b25d092009-05-01 12:06:36 +030077static int handle_options(const char ***argv, int *argc, int *envchanged)
Johannes Schindelin4ab243a2006-07-24 14:10:45 +020078{
Junio C Hamano73546c02011-05-24 18:50:35 -040079 const char **orig_argv = *argv;
Johannes Schindelin4ab243a2006-07-24 14:10:45 +020080
81 while (*argc > 0) {
82 const char *cmd = (*argv)[0];
83 if (cmd[0] != '-')
84 break;
85
Johannes Schindelin6acbcb92006-07-25 20:24:22 +020086 /*
87 * For legacy reasons, the "version" and "help"
88 * commands can be written with "--" prepended
89 * to make them look like flags.
90 */
91 if (!strcmp(cmd, "--help") || !strcmp(cmd, "--version"))
92 break;
93
94 /*
95 * Check remaining flags.
96 */
Jeff Kingae021d82014-06-18 15:47:50 -040097 if (skip_prefix(cmd, "--exec-path", &cmd)) {
Johannes Schindelin6acbcb92006-07-25 20:24:22 +020098 if (*cmd == '=')
Scott R Parish384df832007-10-27 01:36:51 -070099 git_set_argv_exec_path(cmd + 1);
Johannes Schindelin6acbcb92006-07-25 20:24:22 +0200100 else {
101 puts(git_exec_path());
102 exit(0);
103 }
Markus Heidelberg89a56bf2009-04-05 04:15:16 +0200104 } else if (!strcmp(cmd, "--html-path")) {
105 puts(system_path(GIT_HTML_PATH));
106 exit(0);
Jon Seymourf2dd8c32011-05-01 18:16:25 +1000107 } else if (!strcmp(cmd, "--man-path")) {
108 puts(system_path(GIT_MAN_PATH));
109 exit(0);
110 } else if (!strcmp(cmd, "--info-path")) {
111 puts(system_path(GIT_INFO_PATH));
112 exit(0);
Johannes Schindelin6acbcb92006-07-25 20:24:22 +0200113 } else if (!strcmp(cmd, "-p") || !strcmp(cmd, "--paginate")) {
Jeff King4e107382008-07-03 07:46:57 -0400114 use_pager = 1;
Matthieu Moy463a8492007-08-19 19:24:36 +0200115 } else if (!strcmp(cmd, "--no-pager")) {
Jeff King4e107382008-07-03 07:46:57 -0400116 use_pager = 0;
Matthieu Moy463a8492007-08-19 19:24:36 +0200117 if (envchanged)
118 *envchanged = 1;
Christian Couderb0fa7ab2009-10-12 22:30:32 +0200119 } else if (!strcmp(cmd, "--no-replace-objects")) {
Michael Haggertyafc711b2014-02-18 12:24:55 +0100120 check_replace_refs = 0;
Christian Couder6476b382009-11-18 07:50:58 +0100121 setenv(NO_REPLACE_OBJECTS_ENVIRONMENT, "1", 1);
122 if (envchanged)
123 *envchanged = 1;
Johannes Schindelin6acbcb92006-07-25 20:24:22 +0200124 } else if (!strcmp(cmd, "--git-dir")) {
Brian Gernhardtc321f002006-12-22 08:56:25 -0500125 if (*argc < 2) {
126 fprintf(stderr, "No directory given for --git-dir.\n" );
127 usage(git_usage_string);
128 }
Shawn O. Pearce45b09792006-12-30 23:29:11 -0500129 setenv(GIT_DIR_ENVIRONMENT, (*argv)[1], 1);
Matthias Lederhofer4394efe2007-06-08 22:57:55 +0200130 if (envchanged)
131 *envchanged = 1;
Johannes Schindelin6acbcb92006-07-25 20:24:22 +0200132 (*argv)++;
133 (*argc)--;
Jeff Kingae021d82014-06-18 15:47:50 -0400134 } else if (skip_prefix(cmd, "--git-dir=", &cmd)) {
135 setenv(GIT_DIR_ENVIRONMENT, cmd, 1);
Matthias Lederhofer4394efe2007-06-08 22:57:55 +0200136 if (envchanged)
137 *envchanged = 1;
Josh Tripletta1bea2c2011-07-05 10:54:44 -0700138 } else if (!strcmp(cmd, "--namespace")) {
139 if (*argc < 2) {
140 fprintf(stderr, "No namespace given for --namespace.\n" );
141 usage(git_usage_string);
142 }
143 setenv(GIT_NAMESPACE_ENVIRONMENT, (*argv)[1], 1);
144 if (envchanged)
145 *envchanged = 1;
146 (*argv)++;
147 (*argc)--;
Jeff Kingae021d82014-06-18 15:47:50 -0400148 } else if (skip_prefix(cmd, "--namespace=", &cmd)) {
149 setenv(GIT_NAMESPACE_ENVIRONMENT, cmd, 1);
Josh Tripletta1bea2c2011-07-05 10:54:44 -0700150 if (envchanged)
151 *envchanged = 1;
Matthias Lederhofer892c41b2007-06-06 09:10:42 +0200152 } else if (!strcmp(cmd, "--work-tree")) {
153 if (*argc < 2) {
154 fprintf(stderr, "No directory given for --work-tree.\n" );
155 usage(git_usage_string);
156 }
157 setenv(GIT_WORK_TREE_ENVIRONMENT, (*argv)[1], 1);
Matthias Lederhofer4394efe2007-06-08 22:57:55 +0200158 if (envchanged)
159 *envchanged = 1;
Matthias Lederhofer892c41b2007-06-06 09:10:42 +0200160 (*argv)++;
161 (*argc)--;
Jeff Kingae021d82014-06-18 15:47:50 -0400162 } else if (skip_prefix(cmd, "--work-tree=", &cmd)) {
163 setenv(GIT_WORK_TREE_ENVIRONMENT, cmd, 1);
Matthias Lederhofer4394efe2007-06-08 22:57:55 +0200164 if (envchanged)
165 *envchanged = 1;
Brandon Williams74866d72016-10-07 11:18:48 -0700166 } else if (!strcmp(cmd, "--super-prefix")) {
167 if (*argc < 2) {
168 fprintf(stderr, "No prefix given for --super-prefix.\n" );
169 usage(git_usage_string);
170 }
171 setenv(GIT_SUPER_PREFIX_ENVIRONMENT, (*argv)[1], 1);
172 if (envchanged)
173 *envchanged = 1;
174 (*argv)++;
175 (*argc)--;
176 } else if (skip_prefix(cmd, "--super-prefix=", &cmd)) {
177 setenv(GIT_SUPER_PREFIX_ENVIRONMENT, cmd, 1);
178 if (envchanged)
179 *envchanged = 1;
Johannes Schindelin6acbcb92006-07-25 20:24:22 +0200180 } else if (!strcmp(cmd, "--bare")) {
René Scharfe4d3ab442014-07-28 20:31:57 +0200181 char *cwd = xgetcwd();
Junio C Hamano6adcca32007-08-27 00:58:06 -0700182 is_bare_repository_cfg = 1;
René Scharfe4d3ab442014-07-28 20:31:57 +0200183 setenv(GIT_DIR_ENVIRONMENT, cwd, 0);
184 free(cwd);
Jeff King2cd83d12013-03-08 04:32:22 -0500185 setenv(GIT_IMPLICIT_WORK_TREE_ENVIRONMENT, "0", 1);
Matthias Lederhofer4394efe2007-06-08 22:57:55 +0200186 if (envchanged)
187 *envchanged = 1;
Alex Riesen8b1fa772010-03-26 23:53:57 +0100188 } else if (!strcmp(cmd, "-c")) {
189 if (*argc < 2) {
190 fprintf(stderr, "-c expects a configuration string\n" );
191 usage(git_usage_string);
192 }
Jeff King2b64fc82010-08-23 15:16:00 -0400193 git_config_push_parameter((*argv)[1]);
Alex Riesen8b1fa772010-03-26 23:53:57 +0100194 (*argv)++;
195 (*argc)--;
Jeff King823ab402012-12-19 17:37:30 -0500196 } else if (!strcmp(cmd, "--literal-pathspecs")) {
197 setenv(GIT_LITERAL_PATHSPECS_ENVIRONMENT, "1", 1);
198 if (envchanged)
199 *envchanged = 1;
200 } else if (!strcmp(cmd, "--no-literal-pathspecs")) {
201 setenv(GIT_LITERAL_PATHSPECS_ENVIRONMENT, "0", 1);
202 if (envchanged)
203 *envchanged = 1;
Nguyễn Thái Ngọc Duybd30c2e2013-07-14 15:36:08 +0700204 } else if (!strcmp(cmd, "--glob-pathspecs")) {
205 setenv(GIT_GLOB_PATHSPECS_ENVIRONMENT, "1", 1);
206 if (envchanged)
207 *envchanged = 1;
208 } else if (!strcmp(cmd, "--noglob-pathspecs")) {
209 setenv(GIT_NOGLOB_PATHSPECS_ENVIRONMENT, "1", 1);
210 if (envchanged)
211 *envchanged = 1;
Nguyễn Thái Ngọc Duy93d93532013-07-14 15:36:09 +0700212 } else if (!strcmp(cmd, "--icase-pathspecs")) {
213 setenv(GIT_ICASE_PATHSPECS_ENVIRONMENT, "1", 1);
214 if (envchanged)
215 *envchanged = 1;
Nguyễn Thái Ngọc Duy6035d6a2013-05-26 08:16:15 +0700216 } else if (!strcmp(cmd, "--shallow-file")) {
217 (*argv)++;
218 (*argc)--;
Nguyễn Thái Ngọc Duy069c0532013-12-05 20:02:45 +0700219 set_alternate_shallow_file((*argv)[0], 1);
Nguyễn Thái Ngọc Duy6035d6a2013-05-26 08:16:15 +0700220 if (envchanged)
221 *envchanged = 1;
Nazri Ramliy44e1e4d2013-09-09 21:47:43 +0800222 } else if (!strcmp(cmd, "-C")) {
223 if (*argc < 2) {
224 fprintf(stderr, "No directory given for -C.\n" );
225 usage(git_usage_string);
226 }
Karthik Nayak6a536e22015-03-06 16:48:08 +0530227 if ((*argv)[1][0]) {
228 if (chdir((*argv)[1]))
229 die_errno("Cannot change to '%s'", (*argv)[1]);
230 if (envchanged)
231 *envchanged = 1;
232 }
Nazri Ramliy44e1e4d2013-09-09 21:47:43 +0800233 (*argv)++;
234 (*argc)--;
Johannes Schindelin6acbcb92006-07-25 20:24:22 +0200235 } else {
236 fprintf(stderr, "Unknown option: %s\n", cmd);
Ramsay Allan Jones822a7d52006-07-30 22:42:25 +0100237 usage(git_usage_string);
Johannes Schindelin6acbcb92006-07-25 20:24:22 +0200238 }
Johannes Schindelin4ab243a2006-07-24 14:10:45 +0200239
240 (*argv)++;
241 (*argc)--;
Johannes Schindelin4ab243a2006-07-24 14:10:45 +0200242 }
Junio C Hamano73546c02011-05-24 18:50:35 -0400243 return (*argv) - orig_argv;
Johannes Schindelin4ab243a2006-07-24 14:10:45 +0200244}
245
Johannes Schindelin2b11e312006-06-05 19:43:52 +0200246static int handle_alias(int *argcp, const char ***argv)
247{
SZEDER Gáboraf05d672008-03-25 22:06:26 +0100248 int envchanged = 0, ret = 0, saved_errno = errno;
Matthias Lederhofer0347a8c2006-07-30 03:30:29 +0200249 int count, option_count;
Felipe Contreras4b25d092009-05-01 12:06:36 +0300250 const char **new_argv;
Jeff King94351112008-02-24 17:17:14 -0500251 const char *alias_command;
252 char *alias_string;
Junio C Hamanoe85dc0a2008-03-31 21:33:09 -0700253 int unused_nongit;
Johannes Schindelin2b11e312006-06-05 19:43:52 +0200254
Nguyễn Thái Ngọc Duy0d5466d2015-12-03 19:17:55 +0100255 save_env_before_alias();
Nguyễn Thái Ngọc Duy86d26f22015-12-20 14:50:18 +0700256 setup_git_directory_gently(&unused_nongit);
Johannes Schindelin2b11e312006-06-05 19:43:52 +0200257
Matthias Lederhofer0347a8c2006-07-30 03:30:29 +0200258 alias_command = (*argv)[0];
Jeff King94351112008-02-24 17:17:14 -0500259 alias_string = alias_lookup(alias_command);
Matthias Lederhofer0347a8c2006-07-30 03:30:29 +0200260 if (alias_string) {
Theodore Ts'odfd42a32007-02-10 19:33:58 -0500261 if (alias_string[0] == '!') {
Jeff King850d2fe2016-02-22 17:44:21 -0500262 struct child_process child = CHILD_PROCESS_INIT;
Johannes Schindelina2f80282007-07-01 22:51:58 +0100263
Erik Faye-Lund7f51f8b2011-01-07 00:00:38 +0100264 commit_pager_choice();
Nguyễn Thái Ngọc Duy57ea7122015-12-20 14:50:19 +0700265 restore_env(1);
Erik Faye-Lund7f51f8b2011-01-07 00:00:38 +0100266
Jeff King850d2fe2016-02-22 17:44:21 -0500267 child.use_shell = 1;
268 argv_array_push(&child.args, alias_string + 1);
269 argv_array_pushv(&child.args, (*argv) + 1);
Erik Faye-Lund7f51f8b2011-01-07 00:00:38 +0100270
Jeff King850d2fe2016-02-22 17:44:21 -0500271 ret = run_command(&child);
Erik Faye-Lund7f51f8b2011-01-07 00:00:38 +0100272 if (ret >= 0) /* normal exit */
273 exit(ret);
274
275 die_errno("While expanding alias '%s': '%s'",
276 alias_command, alias_string + 1);
Theodore Ts'odfd42a32007-02-10 19:33:58 -0500277 }
Matthias Lederhofer0347a8c2006-07-30 03:30:29 +0200278 count = split_cmdline(alias_string, &new_argv);
Deskin Millerdc4179f2008-09-22 11:06:41 -0400279 if (count < 0)
Greg Brockmanad9ac6d2010-08-07 01:13:39 -0400280 die("Bad alias.%s string: %s", alias_command,
281 split_cmdline_strerror(count));
Matthias Lederhofer4394efe2007-06-08 22:57:55 +0200282 option_count = handle_options(&new_argv, &count, &envchanged);
283 if (envchanged)
284 die("alias '%s' changes environment variables\n"
285 "You can use '!git' in the alias to do this.",
286 alias_command);
Matthias Lederhofer0347a8c2006-07-30 03:30:29 +0200287 memmove(new_argv - option_count, new_argv,
288 count * sizeof(char *));
289 new_argv -= option_count;
Johannes Schindelin2b11e312006-06-05 19:43:52 +0200290
Matthias Lederhofer0347a8c2006-07-30 03:30:29 +0200291 if (count < 1)
292 die("empty alias for %s", alias_command);
Johannes Schindelin2b11e312006-06-05 19:43:52 +0200293
Matthias Lederhofer0347a8c2006-07-30 03:30:29 +0200294 if (!strcmp(alias_command, new_argv[0]))
295 die("recursive alias: %s", alias_command);
Johannes Schindelin2b11e312006-06-05 19:43:52 +0200296
Christian Couderb319ce42007-12-03 05:51:50 +0100297 trace_argv_printf(new_argv,
Christian Couder6ce4e612006-09-02 18:23:48 +0200298 "trace: alias expansion: %s =>",
299 alias_command);
Matthias Lederhofer0347a8c2006-07-30 03:30:29 +0200300
René Scharfe2756ca42014-09-16 20:56:57 +0200301 REALLOC_ARRAY(new_argv, count + *argcp);
Matthias Lederhofer0347a8c2006-07-30 03:30:29 +0200302 /* insert after command name */
Felipe Contreras4b25d092009-05-01 12:06:36 +0300303 memcpy(new_argv + count, *argv + 1, sizeof(char *) * *argcp);
Matthias Lederhofer0347a8c2006-07-30 03:30:29 +0200304
305 *argv = new_argv;
306 *argcp += count - 1;
307
308 ret = 1;
Johannes Schindelin2b11e312006-06-05 19:43:52 +0200309 }
310
Nguyễn Thái Ngọc Duy57ea7122015-12-20 14:50:19 +0700311 restore_env(0);
Johannes Schindelin2b11e312006-06-05 19:43:52 +0200312
Johannes Schindelin47e5c0c2006-06-28 12:45:27 +0200313 errno = saved_errno;
314
Johannes Schindelin2b11e312006-06-05 19:43:52 +0200315 return ret;
316}
317
Nguyễn Thái Ngọc Duyee38dfb2010-08-05 21:52:16 -0500318#define RUN_SETUP (1<<0)
319#define RUN_SETUP_GENTLY (1<<1)
320#define USE_PAGER (1<<2)
Shawn O. Pearce7eff28a2006-12-30 23:32:38 -0500321/*
322 * require working tree to be present -- anything uses this needs
323 * RUN_SETUP for reading from the configuration file.
324 */
Nguyễn Thái Ngọc Duyee38dfb2010-08-05 21:52:16 -0500325#define NEED_WORK_TREE (1<<3)
Brandon Williams74866d72016-10-07 11:18:48 -0700326#define SUPPORT_SUPER_PREFIX (1<<4)
Linus Torvaldsa633fca2006-07-28 22:44:25 -0700327
Linus Torvalds47d0b4f2007-06-24 10:10:40 -0700328struct cmd_struct {
329 const char *cmd;
330 int (*fn)(int, const char **, const char *);
331 int option;
332};
333
Jeff Kingf172f332009-01-28 02:33:53 -0500334static int run_builtin(struct cmd_struct *p, int argc, const char **argv)
Linus Torvalds47d0b4f2007-06-24 10:10:40 -0700335{
Jonathan Nieder99caeed2009-11-09 09:05:01 -0600336 int status, help;
Linus Torvalds0f157312007-06-24 10:29:33 -0700337 struct stat st;
Linus Torvalds47d0b4f2007-06-24 10:10:40 -0700338 const char *prefix;
339
340 prefix = NULL;
Jonathan Nieder99caeed2009-11-09 09:05:01 -0600341 help = argc == 2 && !strcmp(argv[1], "-h");
342 if (!help) {
343 if (p->option & RUN_SETUP)
344 prefix = setup_git_directory();
Luis R. Rodriguez27bd38d2014-04-21 17:47:56 -0700345 else if (p->option & RUN_SETUP_GENTLY) {
Nguyễn Thái Ngọc Duyee38dfb2010-08-05 21:52:16 -0500346 int nongit_ok;
347 prefix = setup_git_directory_gently(&nongit_ok);
348 }
Jeff King4e107382008-07-03 07:46:57 -0400349
Nguyễn Thái Ngọc Duyee38dfb2010-08-05 21:52:16 -0500350 if (use_pager == -1 && p->option & (RUN_SETUP | RUN_SETUP_GENTLY))
Jonathan Nieder99caeed2009-11-09 09:05:01 -0600351 use_pager = check_pager_config(p->cmd);
352 if (use_pager == -1 && p->option & USE_PAGER)
353 use_pager = 1;
Nguyễn Thái Ngọc Duya9ca8a82010-11-26 22:31:57 +0700354
355 if ((p->option & (RUN_SETUP | RUN_SETUP_GENTLY)) &&
356 startup_info->have_repository) /* get_git_dir() may set up repo, avoid that */
357 trace_repo_setup(prefix);
Jonathan Nieder99caeed2009-11-09 09:05:01 -0600358 }
Jeff King4e107382008-07-03 07:46:57 -0400359 commit_pager_choice();
360
Brandon Williams74866d72016-10-07 11:18:48 -0700361 if (!help && get_super_prefix()) {
362 if (!(p->option & SUPPORT_SUPER_PREFIX))
363 die("%s doesn't support --super-prefix", p->cmd);
364 if (prefix)
365 die("can't use --super-prefix from a subdirectory");
366 }
367
Jonathan Nieder99caeed2009-11-09 09:05:01 -0600368 if (!help && p->option & NEED_WORK_TREE)
Mike Hommey59f0f2f2007-11-03 12:23:11 +0100369 setup_work_tree();
370
Christian Couderb319ce42007-12-03 05:51:50 +0100371 trace_argv_printf(argv, "trace: built-in: git");
Linus Torvalds47d0b4f2007-06-24 10:10:40 -0700372
Linus Torvalds0f157312007-06-24 10:29:33 -0700373 status = p->fn(argc, argv, prefix);
374 if (status)
Johannes Sixt47e3de02009-07-05 20:57:46 +0200375 return status;
Linus Torvalds0f157312007-06-24 10:29:33 -0700376
377 /* Somebody closed stdout? */
378 if (fstat(fileno(stdout), &st))
379 return 0;
380 /* Ignore write errors for pipes and sockets.. */
381 if (S_ISFIFO(st.st_mode) || S_ISSOCK(st.st_mode))
382 return 0;
383
384 /* Check for ENOSPC and EIO errors.. */
Linus Torvalds0227f982007-06-30 11:44:20 -0700385 if (fflush(stdout))
Thomas Rastd824cbb2009-06-27 17:58:46 +0200386 die_errno("write failure on standard output");
Linus Torvalds0227f982007-06-30 11:44:20 -0700387 if (ferror(stdout))
388 die("unknown write failure on standard output");
389 if (fclose(stdout))
Thomas Rastd824cbb2009-06-27 17:58:46 +0200390 die_errno("close failed on standard output");
Linus Torvalds0f157312007-06-24 10:29:33 -0700391 return 0;
Linus Torvalds47d0b4f2007-06-24 10:10:40 -0700392}
393
Sebastian Schuberthc6127fa2014-01-02 17:17:11 +0100394static struct cmd_struct commands[] = {
395 { "add", cmd_add, RUN_SETUP | NEED_WORK_TREE },
Paul Tan783d7e82015-08-04 21:52:06 +0800396 { "am", cmd_am, RUN_SETUP | NEED_WORK_TREE },
Sebastian Schuberthc6127fa2014-01-02 17:17:11 +0100397 { "annotate", cmd_annotate, RUN_SETUP },
398 { "apply", cmd_apply, RUN_SETUP_GENTLY },
Junio C Hamanoeb0224c2016-11-22 13:37:04 -0800399 { "archive", cmd_archive, RUN_SETUP_GENTLY },
Sebastian Schuberthc6127fa2014-01-02 17:17:11 +0100400 { "bisect--helper", cmd_bisect__helper, RUN_SETUP },
401 { "blame", cmd_blame, RUN_SETUP },
402 { "branch", cmd_branch, RUN_SETUP },
403 { "bundle", cmd_bundle, RUN_SETUP_GENTLY },
404 { "cat-file", cmd_cat_file, RUN_SETUP },
405 { "check-attr", cmd_check_attr, RUN_SETUP },
406 { "check-ignore", cmd_check_ignore, RUN_SETUP | NEED_WORK_TREE },
407 { "check-mailmap", cmd_check_mailmap, RUN_SETUP },
408 { "check-ref-format", cmd_check_ref_format },
Eric Sunshine0ca560c2015-07-06 13:30:56 -0400409 { "checkout", cmd_checkout, RUN_SETUP | NEED_WORK_TREE },
Sebastian Schuberthc6127fa2014-01-02 17:17:11 +0100410 { "checkout-index", cmd_checkout_index,
411 RUN_SETUP | NEED_WORK_TREE},
412 { "cherry", cmd_cherry, RUN_SETUP },
413 { "cherry-pick", cmd_cherry_pick, RUN_SETUP | NEED_WORK_TREE },
414 { "clean", cmd_clean, RUN_SETUP | NEED_WORK_TREE },
Nguyễn Thái Ngọc Duy86d26f22015-12-20 14:50:18 +0700415 { "clone", cmd_clone },
Sebastian Schuberthc6127fa2014-01-02 17:17:11 +0100416 { "column", cmd_column, RUN_SETUP_GENTLY },
417 { "commit", cmd_commit, RUN_SETUP | NEED_WORK_TREE },
418 { "commit-tree", cmd_commit_tree, RUN_SETUP },
419 { "config", cmd_config, RUN_SETUP_GENTLY },
420 { "count-objects", cmd_count_objects, RUN_SETUP },
421 { "credential", cmd_credential, RUN_SETUP_GENTLY },
422 { "describe", cmd_describe, RUN_SETUP },
423 { "diff", cmd_diff },
424 { "diff-files", cmd_diff_files, RUN_SETUP | NEED_WORK_TREE },
425 { "diff-index", cmd_diff_index, RUN_SETUP },
426 { "diff-tree", cmd_diff_tree, RUN_SETUP },
427 { "fast-export", cmd_fast_export, RUN_SETUP },
428 { "fetch", cmd_fetch, RUN_SETUP },
429 { "fetch-pack", cmd_fetch_pack, RUN_SETUP },
430 { "fmt-merge-msg", cmd_fmt_merge_msg, RUN_SETUP },
431 { "for-each-ref", cmd_for_each_ref, RUN_SETUP },
432 { "format-patch", cmd_format_patch, RUN_SETUP },
433 { "fsck", cmd_fsck, RUN_SETUP },
434 { "fsck-objects", cmd_fsck, RUN_SETUP },
435 { "gc", cmd_gc, RUN_SETUP },
436 { "get-tar-commit-id", cmd_get_tar_commit_id },
437 { "grep", cmd_grep, RUN_SETUP_GENTLY },
438 { "hash-object", cmd_hash_object },
439 { "help", cmd_help },
440 { "index-pack", cmd_index_pack, RUN_SETUP_GENTLY },
Nguyễn Thái Ngọc Duy86d26f22015-12-20 14:50:18 +0700441 { "init", cmd_init_db },
442 { "init-db", cmd_init_db },
John Keepingcbd9fc22015-09-05 14:39:24 +0100443 { "interpret-trailers", cmd_interpret_trailers, RUN_SETUP_GENTLY },
Sebastian Schuberthc6127fa2014-01-02 17:17:11 +0100444 { "log", cmd_log, RUN_SETUP },
Brandon Williamse77aa332016-10-07 11:18:49 -0700445 { "ls-files", cmd_ls_files, RUN_SETUP | SUPPORT_SUPER_PREFIX },
Sebastian Schuberthc6127fa2014-01-02 17:17:11 +0100446 { "ls-remote", cmd_ls_remote, RUN_SETUP_GENTLY },
447 { "ls-tree", cmd_ls_tree, RUN_SETUP },
Junio C Hamano3f0ec062016-11-22 13:13:16 -0800448 { "mailinfo", cmd_mailinfo, RUN_SETUP_GENTLY },
Sebastian Schuberthc6127fa2014-01-02 17:17:11 +0100449 { "mailsplit", cmd_mailsplit },
450 { "merge", cmd_merge, RUN_SETUP | NEED_WORK_TREE },
451 { "merge-base", cmd_merge_base, RUN_SETUP },
452 { "merge-file", cmd_merge_file, RUN_SETUP_GENTLY },
453 { "merge-index", cmd_merge_index, RUN_SETUP },
454 { "merge-ours", cmd_merge_ours, RUN_SETUP },
455 { "merge-recursive", cmd_merge_recursive, RUN_SETUP | NEED_WORK_TREE },
456 { "merge-recursive-ours", cmd_merge_recursive, RUN_SETUP | NEED_WORK_TREE },
457 { "merge-recursive-theirs", cmd_merge_recursive, RUN_SETUP | NEED_WORK_TREE },
458 { "merge-subtree", cmd_merge_recursive, RUN_SETUP | NEED_WORK_TREE },
459 { "merge-tree", cmd_merge_tree, RUN_SETUP },
460 { "mktag", cmd_mktag, RUN_SETUP },
461 { "mktree", cmd_mktree, RUN_SETUP },
462 { "mv", cmd_mv, RUN_SETUP | NEED_WORK_TREE },
463 { "name-rev", cmd_name_rev, RUN_SETUP },
464 { "notes", cmd_notes, RUN_SETUP },
465 { "pack-objects", cmd_pack_objects, RUN_SETUP },
466 { "pack-redundant", cmd_pack_redundant, RUN_SETUP },
467 { "pack-refs", cmd_pack_refs, RUN_SETUP },
Jeff King4a73aaa2016-09-12 20:23:22 -0700468 { "patch-id", cmd_patch_id, RUN_SETUP_GENTLY },
Sebastian Schuberthc6127fa2014-01-02 17:17:11 +0100469 { "pickaxe", cmd_blame, RUN_SETUP },
470 { "prune", cmd_prune, RUN_SETUP },
471 { "prune-packed", cmd_prune_packed, RUN_SETUP },
Paul Tan1e1ea692015-06-14 16:41:51 +0800472 { "pull", cmd_pull, RUN_SETUP | NEED_WORK_TREE },
Sebastian Schuberthc6127fa2014-01-02 17:17:11 +0100473 { "push", cmd_push, RUN_SETUP },
Stefan Beller3d415422017-01-17 17:05:20 -0800474 { "read-tree", cmd_read_tree, RUN_SETUP | SUPPORT_SUPER_PREFIX},
Sebastian Schuberthc6127fa2014-01-02 17:17:11 +0100475 { "receive-pack", cmd_receive_pack },
476 { "reflog", cmd_reflog, RUN_SETUP },
477 { "remote", cmd_remote, RUN_SETUP },
478 { "remote-ext", cmd_remote_ext },
479 { "remote-fd", cmd_remote_fd },
480 { "repack", cmd_repack, RUN_SETUP },
481 { "replace", cmd_replace, RUN_SETUP },
482 { "rerere", cmd_rerere, RUN_SETUP },
483 { "reset", cmd_reset, RUN_SETUP },
484 { "rev-list", cmd_rev_list, RUN_SETUP },
485 { "rev-parse", cmd_rev_parse },
486 { "revert", cmd_revert, RUN_SETUP | NEED_WORK_TREE },
487 { "rm", cmd_rm, RUN_SETUP },
488 { "send-pack", cmd_send_pack, RUN_SETUP },
489 { "shortlog", cmd_shortlog, RUN_SETUP_GENTLY | USE_PAGER },
490 { "show", cmd_show, RUN_SETUP },
491 { "show-branch", cmd_show_branch, RUN_SETUP },
492 { "show-ref", cmd_show_ref, RUN_SETUP },
493 { "stage", cmd_add, RUN_SETUP | NEED_WORK_TREE },
494 { "status", cmd_status, RUN_SETUP | NEED_WORK_TREE },
495 { "stripspace", cmd_stripspace },
Stefan Beller89c86262016-12-08 13:03:25 -0800496 { "submodule--helper", cmd_submodule__helper, RUN_SETUP | SUPPORT_SUPER_PREFIX},
Sebastian Schuberthc6127fa2014-01-02 17:17:11 +0100497 { "symbolic-ref", cmd_symbolic_ref, RUN_SETUP },
498 { "tag", cmd_tag, RUN_SETUP },
499 { "unpack-file", cmd_unpack_file, RUN_SETUP },
500 { "unpack-objects", cmd_unpack_objects, RUN_SETUP },
501 { "update-index", cmd_update_index, RUN_SETUP },
502 { "update-ref", cmd_update_ref, RUN_SETUP },
503 { "update-server-info", cmd_update_server_info, RUN_SETUP },
504 { "upload-archive", cmd_upload_archive },
505 { "upload-archive--writer", cmd_upload_archive_writer },
506 { "var", cmd_var, RUN_SETUP_GENTLY },
Michael J Gruberd07b00b2014-06-23 09:05:49 +0200507 { "verify-commit", cmd_verify_commit, RUN_SETUP },
Sebastian Schuberthc6127fa2014-01-02 17:17:11 +0100508 { "verify-pack", cmd_verify_pack },
509 { "verify-tag", cmd_verify_tag, RUN_SETUP },
510 { "version", cmd_version },
511 { "whatchanged", cmd_whatchanged, RUN_SETUP },
Nguyễn Thái Ngọc Duydf0b6cf2015-06-29 19:51:18 +0700512 { "worktree", cmd_worktree, RUN_SETUP },
Sebastian Schuberthc6127fa2014-01-02 17:17:11 +0100513 { "write-tree", cmd_write_tree, RUN_SETUP },
514};
515
Slavomir Vlcekc4f901d2014-11-12 14:10:22 +0100516static struct cmd_struct *get_builtin(const char *s)
Sebastian Schuberthc6127fa2014-01-02 17:17:11 +0100517{
518 int i;
519 for (i = 0; i < ARRAY_SIZE(commands); i++) {
Slavomir Vlcekc4f901d2014-11-12 14:10:22 +0100520 struct cmd_struct *p = commands + i;
Sebastian Schuberthc6127fa2014-01-02 17:17:11 +0100521 if (!strcmp(s, p->cmd))
Slavomir Vlcekc4f901d2014-11-12 14:10:22 +0100522 return p;
Sebastian Schuberthc6127fa2014-01-02 17:17:11 +0100523 }
Slavomir Vlcekc4f901d2014-11-12 14:10:22 +0100524 return NULL;
525}
526
527int is_builtin(const char *s)
528{
529 return !!get_builtin(s);
Sebastian Schuberthc6127fa2014-01-02 17:17:11 +0100530}
531
Alexander Kuleshov63ca1c02016-02-22 13:18:29 +0600532#ifdef STRIP_EXTENSION
533static void strip_extension(const char **argv)
534{
535 size_t len;
536
537 if (strip_suffix(argv[0], STRIP_EXTENSION, &len))
538 argv[0] = xmemdupz(argv[0], len);
539}
540#else
541#define strip_extension(cmd)
542#endif
543
Sebastian Schuberth3f784a42014-01-02 17:15:44 +0100544static void handle_builtin(int argc, const char **argv)
Linus Torvalds231af832006-02-26 12:34:51 -0800545{
Ralf Thielow2c6b6d92016-08-26 19:58:36 +0200546 struct argv_array args = ARGV_ARRAY_INIT;
Alexander Kuleshov63ca1c02016-02-22 13:18:29 +0600547 const char *cmd;
Slavomir Vlcekc4f901d2014-11-12 14:10:22 +0100548 struct cmd_struct *builtin;
Johannes Sixt23326d12007-12-08 20:57:25 +0100549
Alexander Kuleshov63ca1c02016-02-22 13:18:29 +0600550 strip_extension(argv);
551 cmd = argv[0];
Linus Torvalds231af832006-02-26 12:34:51 -0800552
Ralf Thielow2c6b6d92016-08-26 19:58:36 +0200553 /* Turn "git cmd --help" into "git help --exclude-guides cmd" */
Linus Torvalds1cd95082006-04-15 11:13:49 -0700554 if (argc > 1 && !strcmp(argv[1], "--help")) {
Ralf Thielow2c6b6d92016-08-26 19:58:36 +0200555 int i;
556
Linus Torvalds1cd95082006-04-15 11:13:49 -0700557 argv[1] = argv[0];
558 argv[0] = cmd = "help";
Ralf Thielow2c6b6d92016-08-26 19:58:36 +0200559
560 for (i = 0; i < argc; i++) {
561 argv_array_push(&args, argv[i]);
562 if (!i)
563 argv_array_push(&args, "--exclude-guides");
564 }
565
566 argc++;
567 argv = args.argv;
Linus Torvalds1cd95082006-04-15 11:13:49 -0700568 }
569
Slavomir Vlcekc4f901d2014-11-12 14:10:22 +0100570 builtin = get_builtin(cmd);
Junio C Hamano441981b2016-01-26 22:52:02 -0800571 if (builtin)
572 exit(run_builtin(builtin, argc, argv));
Ralf Thielow2c6b6d92016-08-26 19:58:36 +0200573 argv_array_clear(&args);
Linus Torvalds231af832006-02-26 12:34:51 -0800574}
575
Junio C Hamano7550be02007-12-01 22:09:22 -0800576static void execv_dashed_external(const char **argv)
577{
Brandon Caseyf285a2d2008-10-09 14:12:12 -0500578 struct strbuf cmd = STRBUF_INIT;
Junio C Hamano7550be02007-12-01 22:09:22 -0800579 const char *tmp;
Jeff Kingd8e96fd2009-01-28 02:38:14 -0500580 int status;
Junio C Hamano7550be02007-12-01 22:09:22 -0800581
Brandon Williams74866d72016-10-07 11:18:48 -0700582 if (get_super_prefix())
583 die("%s doesn't support --super-prefix", argv[0]);
584
Jeff King92058e42011-08-18 15:01:32 -0700585 if (use_pager == -1)
586 use_pager = check_pager_config(argv[0]);
Jonathan Nieder030149a2010-07-14 17:55:12 -0500587 commit_pager_choice();
588
Junio C Hamano7550be02007-12-01 22:09:22 -0800589 strbuf_addf(&cmd, "git-%s", argv[0]);
590
591 /*
592 * argv[0] must be the git command, but the argv array
593 * belongs to the caller, and may be reused in
594 * subsequent loop iterations. Save argv[0] and
595 * restore it on error.
596 */
597 tmp = argv[0];
598 argv[0] = cmd.buf;
599
600 trace_argv_printf(argv, "trace: exec:");
601
Jeff Kingd8e96fd2009-01-28 02:38:14 -0500602 /*
603 * if we fail because the command is not found, it is
604 * OK to return. Otherwise, we just pass along the status code.
605 */
Clemens Buchacher10c6cdd2012-01-08 21:41:09 +0100606 status = run_command_v_opt(argv, RUN_SILENT_EXEC_FAILURE | RUN_CLEAN_ON_EXIT);
Johannes Sixt0ac77ec2009-07-04 21:26:40 +0200607 if (status >= 0 || errno != ENOENT)
Johannes Sixt5709e032009-07-04 21:26:39 +0200608 exit(status);
Junio C Hamano7550be02007-12-01 22:09:22 -0800609
610 argv[0] = tmp;
611
612 strbuf_release(&cmd);
613}
614
Adeodato Simóa907e1b2009-01-04 18:16:01 +0100615static int run_argv(int *argcp, const char ***argv)
616{
617 int done_alias = 0;
618
619 while (1) {
Junio C Hamano441981b2016-01-26 22:52:02 -0800620 /*
621 * If we tried alias and futzed with our environment,
622 * it no longer is safe to invoke builtins directly in
623 * general. We have to spawn them as dashed externals.
624 *
625 * NEEDSWORK: if we can figure out cases
626 * where it is safe to do, we can avoid spawning a new
627 * process.
628 */
629 if (!done_alias)
630 handle_builtin(*argcp, *argv);
Adeodato Simóa907e1b2009-01-04 18:16:01 +0100631
632 /* .. then try the external ones */
633 execv_dashed_external(*argv);
634
635 /* It could be an alias -- this works around the insanity
636 * of overriding "git log" with "git show" by having
637 * alias.log = show
638 */
Nguyễn Thái Ngọc Duyc0562612014-06-08 16:37:10 +0700639 if (done_alias)
640 break;
Nguyễn Thái Ngọc Duyc0562612014-06-08 16:37:10 +0700641 if (!handle_alias(argcp, argv))
Adeodato Simóa907e1b2009-01-04 18:16:01 +0100642 break;
643 done_alias = 1;
644 }
645
646 return done_alias;
647}
648
Jeff King3f2e2292016-07-01 01:58:58 -0400649int cmd_main(int argc, const char **argv)
Andreas Ericsson8e49d502005-11-16 00:31:25 +0100650{
Steve Haslam4dd47c32009-01-18 13:00:10 +0100651 const char *cmd;
Alexander Kuleshov8fa79752015-03-02 18:02:37 +0600652 int done_help = 0;
Andreas Ericsson8e49d502005-11-16 00:31:25 +0100653
Jeff King650c4492016-07-01 02:04:04 -0400654 cmd = argv[0];
Steffen Prohaska2cd72b02009-01-18 13:00:11 +0100655 if (!cmd)
Steve Haslam4dd47c32009-01-18 13:00:10 +0100656 cmd = "git-help";
Jeff King6854a8f2016-11-26 23:31:13 -0500657 else {
658 const char *slash = find_last_dir_sep(cmd);
659 if (slash)
660 cmd = slash + 1;
661 }
Andreas Ericsson8e49d502005-11-16 00:31:25 +0100662
Karsten Blees578da032014-07-12 02:07:01 +0200663 trace_command_performance(argv);
664
Linus Torvalds231af832006-02-26 12:34:51 -0800665 /*
666 * "git-xxxx" is the same as "git xxxx", but we obviously:
667 *
668 * - cannot take flags in between the "git" and the "xxxx".
669 * - cannot execute it externally (since it would just do
670 * the same thing over again)
671 *
Sebastian Schuberth3f784a42014-01-02 17:15:44 +0100672 * So we just directly call the builtin handler, and die if
673 * that one cannot handle it.
Linus Torvalds231af832006-02-26 12:34:51 -0800674 */
Jeff Kingae021d82014-06-18 15:47:50 -0400675 if (skip_prefix(cmd, "git-", &cmd)) {
Linus Torvalds231af832006-02-26 12:34:51 -0800676 argv[0] = cmd;
Sebastian Schuberth3f784a42014-01-02 17:15:44 +0100677 handle_builtin(argc, argv);
678 die("cannot handle %s as a builtin", cmd);
Linus Torvalds231af832006-02-26 12:34:51 -0800679 }
Andreas Ericsson8e49d502005-11-16 00:31:25 +0100680
Linus Torvalds231af832006-02-26 12:34:51 -0800681 /* Look for flags.. */
Johannes Schindelin6acbcb92006-07-25 20:24:22 +0200682 argv++;
683 argc--;
Matthias Lederhofer4394efe2007-06-08 22:57:55 +0200684 handle_options(&argv, &argc, NULL);
Johannes Schindelin6acbcb92006-07-25 20:24:22 +0200685 if (argc > 0) {
Jeff King6d877802014-06-18 15:56:48 -0400686 /* translate --help and --version into commands */
687 skip_prefix(argv[0], "--", &argv[0]);
Johannes Schindelin6acbcb92006-07-25 20:24:22 +0200688 } else {
Scott R Parish3d7e2d82007-10-27 01:36:49 -0700689 /* The user didn't specify a command; give them help */
Nguyễn Thái Ngọc Duy73e25e72010-06-26 14:26:37 -0500690 commit_pager_choice();
Scott R Parish3d7e2d82007-10-27 01:36:49 -0700691 printf("usage: %s\n\n", git_usage_string);
692 list_common_cmds_help();
Kevin Bracey421a9762013-03-10 17:10:20 +0200693 printf("\n%s\n", _(git_more_info_string));
Scott R Parish3d7e2d82007-10-27 01:36:49 -0700694 exit(1);
Andreas Ericsson8e49d502005-11-16 00:31:25 +0100695 }
Johannes Schindelin6acbcb92006-07-25 20:24:22 +0200696 cmd = argv[0];
Andreas Ericsson8e49d502005-11-16 00:31:25 +0100697
Linus Torvalds231af832006-02-26 12:34:51 -0800698 /*
Scott R Parish511707d2007-10-28 04:17:20 -0700699 * We use PATH to find git commands, but we prepend some higher
Mike Ralphson3ea3c212009-04-17 19:13:30 +0100700 * precedence paths: the "--exec-path" option, the GIT_EXEC_PATH
Scott R Parish511707d2007-10-28 04:17:20 -0700701 * environment, and the $(gitexecdir) from the Makefile at build
702 * time.
Linus Torvalds231af832006-02-26 12:34:51 -0800703 */
Johannes Sixte1464ca2008-07-21 21:19:52 +0200704 setup_path();
Junio C Hamano7dbc2c02005-11-15 23:13:30 -0800705
Junio C Hamanoa0254632006-06-05 18:09:40 -0700706 while (1) {
Alexander Kuleshov8fa79752015-03-02 18:02:37 +0600707 int was_alias = run_argv(&argc, &argv);
Adeodato Simóa907e1b2009-01-04 18:16:01 +0100708 if (errno != ENOENT)
Junio C Hamanoa0254632006-06-05 18:09:40 -0700709 break;
Adeodato Simóa907e1b2009-01-04 18:16:01 +0100710 if (was_alias) {
Theodore Ts'of3dd0152007-02-10 19:33:57 -0500711 fprintf(stderr, "Expansion of alias '%s' failed; "
Pete Harlan7283bbc2010-02-15 15:33:18 -0800712 "'%s' is not a git command\n",
Theodore Ts'of3dd0152007-02-10 19:33:57 -0500713 cmd, argv[0]);
714 exit(1);
715 }
Adeodato Simóa907e1b2009-01-04 18:16:01 +0100716 if (!done_help) {
717 cmd = argv[0] = help_unknown_cmd(cmd);
718 done_help = 1;
719 } else
720 break;
Theodore Ts'of3dd0152007-02-10 19:33:57 -0500721 }
Alex Riesen10b15b82005-12-01 13:48:35 +0100722
723 fprintf(stderr, "Failed to run command '%s': %s\n",
Andreas Ericsson33ebb872006-06-28 02:17:21 -0700724 cmd, strerror(errno));
Andreas Ericsson8e49d502005-11-16 00:31:25 +0100725
726 return 1;
727}