blob: 83f3d90ee35418976baea4f032c13aed0ec9e664 [file] [log] [blame]
Junio C Hamano85023572006-12-19 14:34:12 -08001#include "builtin.h"
Michal Ostrowski77cb17e2006-01-10 21:12:17 -05002#include "exec_cmd.h"
Johannes Schindelin2b11e312006-06-05 19:43:52 +02003#include "cache.h"
Matthias Lederhofer575ba9d2006-06-25 15:56:18 +02004#include "quote.h"
Andreas Ericsson8e49d502005-11-16 00:31:25 +01005
Ramsay Allan Jones822a7d52006-07-30 22:42:25 +01006const char git_usage_string[] =
Alan Chandler281e67d2006-10-03 21:11:25 +01007 "git [--version] [--exec-path[=GIT_EXEC_PATH]] [-p|--paginate] [--bare] [--git-dir=GIT_DIR] [--help] COMMAND [ARGS]";
Ramsay Allan Jones822a7d52006-07-30 22:42:25 +01008
Andreas Ericsson8e49d502005-11-16 00:31:25 +01009static void prepend_to_path(const char *dir, int len)
10{
Timo Hirvonen554fe202006-06-28 12:04:39 +030011 const char *old_path = getenv("PATH");
12 char *path;
Andreas Ericsson8e49d502005-11-16 00:31:25 +010013 int path_len = len;
14
15 if (!old_path)
Junio C Hamano7dbc2c02005-11-15 23:13:30 -080016 old_path = "/usr/local/bin:/usr/bin:/bin";
Andreas Ericsson8e49d502005-11-16 00:31:25 +010017
18 path_len = len + strlen(old_path) + 1;
19
Jonas Fonseca2d7320d2006-09-01 00:32:39 +020020 path = xmalloc(path_len + 1);
Andreas Ericsson8e49d502005-11-16 00:31:25 +010021
22 memcpy(path, dir, len);
23 path[len] = ':';
24 memcpy(path + len + 1, old_path, path_len - len);
25
26 setenv("PATH", path, 1);
Christian Couder0caea902006-09-05 08:22:16 +020027
28 free(path);
Andreas Ericsson8e49d502005-11-16 00:31:25 +010029}
30
Johannes Schindelin4ab243a2006-07-24 14:10:45 +020031static int handle_options(const char*** argv, int* argc)
32{
33 int handled = 0;
34
35 while (*argc > 0) {
36 const char *cmd = (*argv)[0];
37 if (cmd[0] != '-')
38 break;
39
Johannes Schindelin6acbcb92006-07-25 20:24:22 +020040 /*
41 * For legacy reasons, the "version" and "help"
42 * commands can be written with "--" prepended
43 * to make them look like flags.
44 */
45 if (!strcmp(cmd, "--help") || !strcmp(cmd, "--version"))
46 break;
47
48 /*
49 * Check remaining flags.
50 */
Junio C Hamanocc44c762007-02-20 01:53:29 -080051 if (!prefixcmp(cmd, "--exec-path")) {
Johannes Schindelin6acbcb92006-07-25 20:24:22 +020052 cmd += 11;
53 if (*cmd == '=')
54 git_set_exec_path(cmd + 1);
55 else {
56 puts(git_exec_path());
57 exit(0);
58 }
59 } else if (!strcmp(cmd, "-p") || !strcmp(cmd, "--paginate")) {
Johannes Schindelin4ab243a2006-07-24 14:10:45 +020060 setup_pager();
Johannes Schindelin6acbcb92006-07-25 20:24:22 +020061 } else if (!strcmp(cmd, "--git-dir")) {
Brian Gernhardtc321f002006-12-22 08:56:25 -050062 if (*argc < 2) {
63 fprintf(stderr, "No directory given for --git-dir.\n" );
64 usage(git_usage_string);
65 }
Shawn O. Pearce45b09792006-12-30 23:29:11 -050066 setenv(GIT_DIR_ENVIRONMENT, (*argv)[1], 1);
Johannes Schindelin6acbcb92006-07-25 20:24:22 +020067 (*argv)++;
68 (*argc)--;
Junio C Hamanocc44c762007-02-20 01:53:29 -080069 } else if (!prefixcmp(cmd, "--git-dir=")) {
Shawn O. Pearce45b09792006-12-30 23:29:11 -050070 setenv(GIT_DIR_ENVIRONMENT, cmd + 10, 1);
Johannes Schindelin6acbcb92006-07-25 20:24:22 +020071 } else if (!strcmp(cmd, "--bare")) {
Shawn O. Pearceef5ddb22006-12-30 23:28:53 -050072 static char git_dir[PATH_MAX+1];
Shawn O. Pearce45b09792006-12-30 23:29:11 -050073 setenv(GIT_DIR_ENVIRONMENT, getcwd(git_dir, sizeof(git_dir)), 1);
Johannes Schindelin6acbcb92006-07-25 20:24:22 +020074 } else {
75 fprintf(stderr, "Unknown option: %s\n", cmd);
Ramsay Allan Jones822a7d52006-07-30 22:42:25 +010076 usage(git_usage_string);
Johannes Schindelin6acbcb92006-07-25 20:24:22 +020077 }
Johannes Schindelin4ab243a2006-07-24 14:10:45 +020078
79 (*argv)++;
80 (*argc)--;
81 handled++;
82 }
83 return handled;
84}
85
Johannes Schindelin2b11e312006-06-05 19:43:52 +020086static const char *alias_command;
David Rientjes96f1e582006-08-15 10:23:48 -070087static char *alias_string;
Johannes Schindelin2b11e312006-06-05 19:43:52 +020088
89static int git_alias_config(const char *var, const char *value)
90{
Junio C Hamanocc44c762007-02-20 01:53:29 -080091 if (!prefixcmp(var, "alias.") && !strcmp(var + 6, alias_command)) {
Shawn Pearce9befac42006-09-02 00:16:31 -040092 alias_string = xstrdup(value);
Johannes Schindelin2b11e312006-06-05 19:43:52 +020093 }
94 return 0;
95}
96
97static int split_cmdline(char *cmdline, const char ***argv)
98{
99 int src, dst, count = 0, size = 16;
100 char quoted = 0;
101
102 *argv = malloc(sizeof(char*) * size);
103
104 /* split alias_string */
105 (*argv)[count++] = cmdline;
106 for (src = dst = 0; cmdline[src];) {
107 char c = cmdline[src];
108 if (!quoted && isspace(c)) {
109 cmdline[dst++] = 0;
110 while (cmdline[++src]
111 && isspace(cmdline[src]))
112 ; /* skip */
113 if (count >= size) {
114 size += 16;
Jonas Fonseca83572c12006-08-26 16:16:18 +0200115 *argv = xrealloc(*argv, sizeof(char*) * size);
Johannes Schindelin2b11e312006-06-05 19:43:52 +0200116 }
117 (*argv)[count++] = cmdline + dst;
118 } else if(!quoted && (c == '\'' || c == '"')) {
119 quoted = c;
120 src++;
121 } else if (c == quoted) {
122 quoted = 0;
123 src++;
124 } else {
125 if (c == '\\' && quoted != '\'') {
126 src++;
127 c = cmdline[src];
128 if (!c) {
129 free(*argv);
130 *argv = NULL;
131 return error("cmdline ends with \\");
132 }
133 }
134 cmdline[dst++] = c;
135 src++;
136 }
137 }
138
139 cmdline[dst] = 0;
140
141 if (quoted) {
142 free(*argv);
143 *argv = NULL;
144 return error("unclosed quote");
145 }
146
147 return count;
148}
149
150static int handle_alias(int *argcp, const char ***argv)
151{
Johannes Schindelin47e5c0c2006-06-28 12:45:27 +0200152 int nongit = 0, ret = 0, saved_errno = errno;
Johannes Schindelin2b11e312006-06-05 19:43:52 +0200153 const char *subdir;
Matthias Lederhofer0347a8c2006-07-30 03:30:29 +0200154 int count, option_count;
155 const char** new_argv;
Johannes Schindelin2b11e312006-06-05 19:43:52 +0200156
157 subdir = setup_git_directory_gently(&nongit);
Johannes Schindelin2b11e312006-06-05 19:43:52 +0200158
Matthias Lederhofer0347a8c2006-07-30 03:30:29 +0200159 alias_command = (*argv)[0];
160 git_config(git_alias_config);
161 if (alias_string) {
Theodore Ts'odfd42a32007-02-10 19:33:58 -0500162 if (alias_string[0] == '!') {
163 trace_printf("trace: alias to shell cmd: %s => %s\n",
164 alias_command, alias_string + 1);
165 ret = system(alias_string + 1);
166 if (ret >= 0 && WIFEXITED(ret) &&
167 WEXITSTATUS(ret) != 127)
168 exit(WEXITSTATUS(ret));
169 die("Failed to run '%s' when expanding alias '%s'\n",
170 alias_string + 1, alias_command);
171 }
Matthias Lederhofer0347a8c2006-07-30 03:30:29 +0200172 count = split_cmdline(alias_string, &new_argv);
173 option_count = handle_options(&new_argv, &count);
174 memmove(new_argv - option_count, new_argv,
175 count * sizeof(char *));
176 new_argv -= option_count;
Johannes Schindelin2b11e312006-06-05 19:43:52 +0200177
Matthias Lederhofer0347a8c2006-07-30 03:30:29 +0200178 if (count < 1)
179 die("empty alias for %s", alias_command);
Johannes Schindelin2b11e312006-06-05 19:43:52 +0200180
Matthias Lederhofer0347a8c2006-07-30 03:30:29 +0200181 if (!strcmp(alias_command, new_argv[0]))
182 die("recursive alias: %s", alias_command);
Johannes Schindelin2b11e312006-06-05 19:43:52 +0200183
Christian Couder6ce4e612006-09-02 18:23:48 +0200184 trace_argv_printf(new_argv, count,
185 "trace: alias expansion: %s =>",
186 alias_command);
Matthias Lederhofer0347a8c2006-07-30 03:30:29 +0200187
Jonas Fonseca83572c12006-08-26 16:16:18 +0200188 new_argv = xrealloc(new_argv, sizeof(char*) *
189 (count + *argcp + 1));
Matthias Lederhofer0347a8c2006-07-30 03:30:29 +0200190 /* insert after command name */
191 memcpy(new_argv + count, *argv + 1, sizeof(char*) * *argcp);
192 new_argv[count+*argcp] = NULL;
193
194 *argv = new_argv;
195 *argcp += count - 1;
196
197 ret = 1;
Johannes Schindelin2b11e312006-06-05 19:43:52 +0200198 }
199
200 if (subdir)
201 chdir(subdir);
202
Johannes Schindelin47e5c0c2006-06-28 12:45:27 +0200203 errno = saved_errno;
204
Johannes Schindelin2b11e312006-06-05 19:43:52 +0200205 return ret;
206}
207
Linus Torvalds70827b12006-04-21 10:27:34 -0700208const char git_version_string[] = GIT_VERSION;
Junio C Hamano5b84f4d2006-04-16 00:07:41 -0700209
Junio C Hamanoefffea02006-08-04 02:04:00 -0700210#define RUN_SETUP (1<<0)
211#define USE_PAGER (1<<1)
Shawn O. Pearce7eff28a2006-12-30 23:32:38 -0500212/*
213 * require working tree to be present -- anything uses this needs
214 * RUN_SETUP for reading from the configuration file.
215 */
216#define NOT_BARE (1<<2)
Linus Torvaldsa633fca2006-07-28 22:44:25 -0700217
Junio C Hamano9201c702006-03-05 02:47:29 -0800218static void handle_internal_command(int argc, const char **argv, char **envp)
Linus Torvalds231af832006-02-26 12:34:51 -0800219{
220 const char *cmd = argv[0];
221 static struct cmd_struct {
222 const char *cmd;
Linus Torvaldsa633fca2006-07-28 22:44:25 -0700223 int (*fn)(int, const char **, const char *);
Junio C Hamano9590b042006-07-31 02:53:46 -0700224 int option;
Linus Torvalds231af832006-02-26 12:34:51 -0800225 } commands[] = {
Shawn O. Pearce7eff28a2006-12-30 23:32:38 -0500226 { "add", cmd_add, RUN_SETUP | NOT_BARE },
Johannes Schindeline955ae92007-01-24 15:04:37 +0100227 { "annotate", cmd_annotate, USE_PAGER },
Junio C Hamanof754fa92006-08-04 01:51:04 -0700228 { "apply", cmd_apply },
Franck Bui-Huu4df096a2006-09-07 15:12:02 +0200229 { "archive", cmd_archive },
Ren,Ai(B Scharfe4f0219a2007-01-28 15:25:55 +0100230 { "blame", cmd_blame, RUN_SETUP },
Junio C Hamano1da1b3a2006-11-01 12:53:13 -0800231 { "branch", cmd_branch, RUN_SETUP },
Junio C Hamanoefffea02006-08-04 02:04:00 -0700232 { "cat-file", cmd_cat_file, RUN_SETUP },
233 { "checkout-index", cmd_checkout_index, RUN_SETUP },
Junio C Hamanof754fa92006-08-04 01:51:04 -0700234 { "check-ref-format", cmd_check_ref_format },
Rene Scharfee8276332006-10-24 01:01:57 +0200235 { "cherry", cmd_cherry, RUN_SETUP },
Junio C Hamanoefffea02006-08-04 02:04:00 -0700236 { "commit-tree", cmd_commit_tree, RUN_SETUP },
Tom Princee0d10e12007-01-28 16:16:53 -0800237 { "config", cmd_config },
Dmitry V. Levin81128942006-09-14 05:03:59 +0400238 { "count-objects", cmd_count_objects, RUN_SETUP },
Shawn O. Pearce9a0eaf82007-01-10 06:36:36 -0500239 { "describe", cmd_describe, RUN_SETUP },
Martin Waitze88ee292006-10-10 21:16:25 +0200240 { "diff", cmd_diff, RUN_SETUP | USE_PAGER },
Junio C Hamanoefffea02006-08-04 02:04:00 -0700241 { "diff-files", cmd_diff_files, RUN_SETUP },
242 { "diff-index", cmd_diff_index, RUN_SETUP },
Junio C Hamanoefffea02006-08-04 02:04:00 -0700243 { "diff-tree", cmd_diff_tree, RUN_SETUP },
244 { "fmt-merge-msg", cmd_fmt_merge_msg, RUN_SETUP },
Junio C Hamano9f613dd2006-09-15 13:30:02 -0700245 { "for-each-ref", cmd_for_each_ref, RUN_SETUP },
Junio C Hamanoefffea02006-08-04 02:04:00 -0700246 { "format-patch", cmd_format_patch, RUN_SETUP },
Mark Woodingb4dfefe2007-01-29 15:48:06 +0000247 { "fsck", cmd_fsck, RUN_SETUP },
248 { "fsck-objects", cmd_fsck, RUN_SETUP },
Junio C Hamanof754fa92006-08-04 01:51:04 -0700249 { "get-tar-commit-id", cmd_get_tar_commit_id },
Johannes Schindelin34c6a822007-02-19 15:56:04 +0100250 { "grep", cmd_grep, RUN_SETUP | USE_PAGER },
Junio C Hamanof754fa92006-08-04 01:51:04 -0700251 { "help", cmd_help },
Nicolas Pitre515377e2007-01-07 12:31:29 -0500252 { "init", cmd_init_db },
Junio C Hamanof754fa92006-08-04 01:51:04 -0700253 { "init-db", cmd_init_db },
Junio C Hamanoefffea02006-08-04 02:04:00 -0700254 { "log", cmd_log, RUN_SETUP | USE_PAGER },
255 { "ls-files", cmd_ls_files, RUN_SETUP },
256 { "ls-tree", cmd_ls_tree, RUN_SETUP },
Junio C Hamanof754fa92006-08-04 01:51:04 -0700257 { "mailinfo", cmd_mailinfo },
258 { "mailsplit", cmd_mailsplit },
Junio C Hamano71dfbf22007-01-09 00:50:02 -0800259 { "merge-base", cmd_merge_base, RUN_SETUP },
Johannes Schindelinba1f5f32006-12-06 16:26:06 +0100260 { "merge-file", cmd_merge_file },
Shawn O. Pearce7eff28a2006-12-30 23:32:38 -0500261 { "mv", cmd_mv, RUN_SETUP | NOT_BARE },
Junio C Hamanoefffea02006-08-04 02:04:00 -0700262 { "name-rev", cmd_name_rev, RUN_SETUP },
263 { "pack-objects", cmd_pack_objects, RUN_SETUP },
Junio C Hamanoacca6872006-11-08 18:47:54 -0800264 { "pickaxe", cmd_blame, RUN_SETUP | USE_PAGER },
Junio C Hamanoefffea02006-08-04 02:04:00 -0700265 { "prune", cmd_prune, RUN_SETUP },
266 { "prune-packed", cmd_prune_packed, RUN_SETUP },
Junio C Hamano102cb082006-08-08 15:42:20 -0700267 { "push", cmd_push, RUN_SETUP },
Junio C Hamanoefffea02006-08-04 02:04:00 -0700268 { "read-tree", cmd_read_tree, RUN_SETUP },
Junio C Hamano4264dc12006-12-19 00:23:12 -0800269 { "reflog", cmd_reflog, RUN_SETUP },
Tom Princee0d10e12007-01-28 16:16:53 -0800270 { "repo-config", cmd_config },
Johannes Schindelin658f3652006-12-20 17:39:41 +0100271 { "rerere", cmd_rerere, RUN_SETUP },
Junio C Hamanoefffea02006-08-04 02:04:00 -0700272 { "rev-list", cmd_rev_list, RUN_SETUP },
273 { "rev-parse", cmd_rev_parse, RUN_SETUP },
Shawn O. Pearce7eff28a2006-12-30 23:32:38 -0500274 { "rm", cmd_rm, RUN_SETUP | NOT_BARE },
275 { "runstatus", cmd_runstatus, RUN_SETUP | NOT_BARE },
Johannes Schindelin1d541c12006-11-28 00:29:21 +0100276 { "shortlog", cmd_shortlog, RUN_SETUP | USE_PAGER },
Junio C Hamanoefffea02006-08-04 02:04:00 -0700277 { "show-branch", cmd_show_branch, RUN_SETUP },
278 { "show", cmd_show, RUN_SETUP | USE_PAGER },
Junio C Hamanof754fa92006-08-04 01:51:04 -0700279 { "stripspace", cmd_stripspace },
Junio C Hamanoefffea02006-08-04 02:04:00 -0700280 { "symbolic-ref", cmd_symbolic_ref, RUN_SETUP },
Rene Scharfe9cb90b82006-10-08 15:44:50 +0200281 { "tar-tree", cmd_tar_tree },
Junio C Hamanoefffea02006-08-04 02:04:00 -0700282 { "unpack-objects", cmd_unpack_objects, RUN_SETUP },
283 { "update-index", cmd_update_index, RUN_SETUP },
284 { "update-ref", cmd_update_ref, RUN_SETUP },
Franck Bui-Huu39345a22006-09-07 15:12:05 +0200285 { "upload-archive", cmd_upload_archive },
Junio C Hamanof754fa92006-08-04 01:51:04 -0700286 { "version", cmd_version },
Junio C Hamanoefffea02006-08-04 02:04:00 -0700287 { "whatchanged", cmd_whatchanged, RUN_SETUP | USE_PAGER },
288 { "write-tree", cmd_write_tree, RUN_SETUP },
Rene Scharfe2e3ed672006-08-10 17:02:38 +0200289 { "verify-pack", cmd_verify_pack },
Linus Torvalds358ddb62006-09-15 11:19:32 -0700290 { "show-ref", cmd_show_ref, RUN_SETUP },
Linus Torvaldse1e22e32006-09-11 16:37:32 -0700291 { "pack-refs", cmd_pack_refs, RUN_SETUP },
Linus Torvalds231af832006-02-26 12:34:51 -0800292 };
293 int i;
294
Linus Torvalds1cd95082006-04-15 11:13:49 -0700295 /* Turn "git cmd --help" into "git help cmd" */
296 if (argc > 1 && !strcmp(argv[1], "--help")) {
297 argv[1] = argv[0];
298 argv[0] = cmd = "help";
299 }
300
Linus Torvalds231af832006-02-26 12:34:51 -0800301 for (i = 0; i < ARRAY_SIZE(commands); i++) {
302 struct cmd_struct *p = commands+i;
Linus Torvaldsa633fca2006-07-28 22:44:25 -0700303 const char *prefix;
Linus Torvalds231af832006-02-26 12:34:51 -0800304 if (strcmp(p->cmd, cmd))
305 continue;
Matthias Lederhofer575ba9d2006-06-25 15:56:18 +0200306
Linus Torvaldsa633fca2006-07-28 22:44:25 -0700307 prefix = NULL;
Junio C Hamanoefffea02006-08-04 02:04:00 -0700308 if (p->option & RUN_SETUP)
Linus Torvaldsa633fca2006-07-28 22:44:25 -0700309 prefix = setup_git_directory();
Junio C Hamano9590b042006-07-31 02:53:46 -0700310 if (p->option & USE_PAGER)
311 setup_pager();
Johannes Schindelin6d9ba672007-01-23 13:30:20 +0100312 if ((p->option & NOT_BARE) &&
313 (is_bare_repository() || is_inside_git_dir()))
314 die("%s must be run in a work tree", cmd);
Christian Couder6ce4e612006-09-02 18:23:48 +0200315 trace_argv_printf(argv, argc, "trace: built-in: git");
Matthias Lederhofer575ba9d2006-06-25 15:56:18 +0200316
Linus Torvaldsa633fca2006-07-28 22:44:25 -0700317 exit(p->fn(argc, argv, prefix));
Linus Torvalds231af832006-02-26 12:34:51 -0800318 }
319}
320
Junio C Hamano9201c702006-03-05 02:47:29 -0800321int main(int argc, const char **argv, char **envp)
Andreas Ericsson8e49d502005-11-16 00:31:25 +0100322{
Dmitry V. Levin5b6df8e2006-09-14 05:04:09 +0400323 const char *cmd = argv[0] ? argv[0] : "git-help";
Linus Torvalds231af832006-02-26 12:34:51 -0800324 char *slash = strrchr(cmd, '/');
Linus Torvalds231af832006-02-26 12:34:51 -0800325 const char *exec_path = NULL;
Junio C Hamanoa0254632006-06-05 18:09:40 -0700326 int done_alias = 0;
Andreas Ericsson8e49d502005-11-16 00:31:25 +0100327
Linus Torvalds231af832006-02-26 12:34:51 -0800328 /*
329 * Take the basename of argv[0] as the command
330 * name, and the dirname as the default exec_path
331 * if it's an absolute path and we don't have
332 * anything better.
333 */
334 if (slash) {
335 *slash++ = 0;
336 if (*cmd == '/')
337 exec_path = cmd;
338 cmd = slash;
339 }
Andreas Ericsson8e49d502005-11-16 00:31:25 +0100340
Linus Torvalds231af832006-02-26 12:34:51 -0800341 /*
342 * "git-xxxx" is the same as "git xxxx", but we obviously:
343 *
344 * - cannot take flags in between the "git" and the "xxxx".
345 * - cannot execute it externally (since it would just do
346 * the same thing over again)
347 *
348 * So we just directly call the internal command handler, and
349 * die if that one cannot handle it.
350 */
Junio C Hamanocc44c762007-02-20 01:53:29 -0800351 if (!prefixcmp(cmd, "git-")) {
Linus Torvalds231af832006-02-26 12:34:51 -0800352 cmd += 4;
353 argv[0] = cmd;
354 handle_internal_command(argc, argv, envp);
355 die("cannot handle %s internally", cmd);
356 }
Andreas Ericsson8e49d502005-11-16 00:31:25 +0100357
Linus Torvalds231af832006-02-26 12:34:51 -0800358 /* Look for flags.. */
Johannes Schindelin6acbcb92006-07-25 20:24:22 +0200359 argv++;
360 argc--;
361 handle_options(&argv, &argc);
362 if (argc > 0) {
Junio C Hamanocc44c762007-02-20 01:53:29 -0800363 if (!prefixcmp(argv[0], "--"))
Johannes Schindelin6acbcb92006-07-25 20:24:22 +0200364 argv[0] += 2;
365 } else {
366 /* Default command: "help" */
367 argv[0] = "help";
368 argc = 1;
Andreas Ericsson8e49d502005-11-16 00:31:25 +0100369 }
Johannes Schindelin6acbcb92006-07-25 20:24:22 +0200370 cmd = argv[0];
Andreas Ericsson8e49d502005-11-16 00:31:25 +0100371
Linus Torvalds231af832006-02-26 12:34:51 -0800372 /*
373 * We search for git commands in the following order:
374 * - git_exec_path()
375 * - the path of the "git" command if we could find it
376 * in $0
377 * - the regular PATH.
378 */
379 if (exec_path)
380 prepend_to_path(exec_path, strlen(exec_path));
Michal Ostrowski77cb17e2006-01-10 21:12:17 -0500381 exec_path = git_exec_path();
382 prepend_to_path(exec_path, strlen(exec_path));
Junio C Hamano7dbc2c02005-11-15 23:13:30 -0800383
Junio C Hamanoa0254632006-06-05 18:09:40 -0700384 while (1) {
385 /* See if it's an internal command */
386 handle_internal_command(argc, argv, envp);
Johannes Schindelin2b11e312006-06-05 19:43:52 +0200387
Junio C Hamanoa0254632006-06-05 18:09:40 -0700388 /* .. then try the external ones */
389 execv_git_cmd(argv);
Linus Torvalds231af832006-02-26 12:34:51 -0800390
Junio C Hamanoa0254632006-06-05 18:09:40 -0700391 /* It could be an alias -- this works around the insanity
392 * of overriding "git log" with "git show" by having
393 * alias.log = show
394 */
395 if (done_alias || !handle_alias(&argc, &argv))
396 break;
397 done_alias = 1;
398 }
Alex Riesen10b15b82005-12-01 13:48:35 +0100399
Theodore Ts'of3dd0152007-02-10 19:33:57 -0500400 if (errno == ENOENT) {
401 if (done_alias) {
402 fprintf(stderr, "Expansion of alias '%s' failed; "
403 "'%s' is not a git-command\n",
404 cmd, argv[0]);
405 exit(1);
406 }
Ramsay Allan Jones822a7d52006-07-30 22:42:25 +0100407 help_unknown_cmd(cmd);
Theodore Ts'of3dd0152007-02-10 19:33:57 -0500408 }
Alex Riesen10b15b82005-12-01 13:48:35 +0100409
410 fprintf(stderr, "Failed to run command '%s': %s\n",
Andreas Ericsson33ebb872006-06-28 02:17:21 -0700411 cmd, strerror(errno));
Andreas Ericsson8e49d502005-11-16 00:31:25 +0100412
413 return 1;
414}