]> git.ipfire.org Git - thirdparty/git.git/blame - git.c
Merge branch 'np/maint-sideband-favor-status'
[thirdparty/git.git] / git.c
CommitLineData
85023577 1#include "builtin.h"
77cb17e9 2#include "exec_cmd.h"
2b11e317 3#include "cache.h"
575ba9d6 4#include "quote.h"
d8e96fd8 5#include "run-command.h"
8e49d503 6
822a7d50 7const char git_usage_string[] =
511a3fc1 8 "git [--version] [--exec-path[=GIT_EXEC_PATH]] [--html-path]\n"
b0fa7ab5 9 " [-p|--paginate|--no-pager] [--no-replace-objects]\n"
511a3fc1
MM
10 " [--bare] [--git-dir=GIT_DIR] [--work-tree=GIT_WORK_TREE]\n"
11 " [--help] COMMAND [ARGS]";
822a7d50 12
b7d96819
TL
13const char git_more_info_string[] =
14 "See 'git help COMMAND' for more information on a specific command.";
15
4e10738a
JK
16static int use_pager = -1;
17struct pager_config {
18 const char *cmd;
19 int val;
20};
21
22static int pager_command_config(const char *var, const char *value, void *data)
23{
24 struct pager_config *c = data;
25 if (!prefixcmp(var, "pager.") && !strcmp(var + 6, c->cmd))
26 c->val = git_config_bool(var, value);
27 return 0;
28}
29
30/* returns 0 for "no pager", 1 for "use pager", and -1 for "not specified" */
31int check_pager_config(const char *cmd)
32{
33 struct pager_config c;
34 c.cmd = cmd;
35 c.val = -1;
36 git_config(pager_command_config, &c);
37 return c.val;
38}
39
40static void commit_pager_choice(void) {
41 switch (use_pager) {
42 case 0:
43 setenv("GIT_PAGER", "cat", 1);
44 break;
45 case 1:
46 setup_pager();
47 break;
48 default:
49 break;
50 }
51}
52
4b25d091 53static int handle_options(const char ***argv, int *argc, int *envchanged)
4ab243a9
JS
54{
55 int handled = 0;
56
57 while (*argc > 0) {
58 const char *cmd = (*argv)[0];
59 if (cmd[0] != '-')
60 break;
61
6acbcb92
JS
62 /*
63 * For legacy reasons, the "version" and "help"
64 * commands can be written with "--" prepended
65 * to make them look like flags.
66 */
67 if (!strcmp(cmd, "--help") || !strcmp(cmd, "--version"))
68 break;
69
70 /*
71 * Check remaining flags.
72 */
cc44c765 73 if (!prefixcmp(cmd, "--exec-path")) {
6acbcb92
JS
74 cmd += 11;
75 if (*cmd == '=')
384df833 76 git_set_argv_exec_path(cmd + 1);
6acbcb92
JS
77 else {
78 puts(git_exec_path());
79 exit(0);
80 }
89a56bfb
MH
81 } else if (!strcmp(cmd, "--html-path")) {
82 puts(system_path(GIT_HTML_PATH));
83 exit(0);
6acbcb92 84 } else if (!strcmp(cmd, "-p") || !strcmp(cmd, "--paginate")) {
4e10738a 85 use_pager = 1;
463a849d 86 } else if (!strcmp(cmd, "--no-pager")) {
4e10738a 87 use_pager = 0;
463a849d
MM
88 if (envchanged)
89 *envchanged = 1;
b0fa7ab5
CC
90 } else if (!strcmp(cmd, "--no-replace-objects")) {
91 read_replace_refs = 0;
6acbcb92 92 } else if (!strcmp(cmd, "--git-dir")) {
c321f00d
BG
93 if (*argc < 2) {
94 fprintf(stderr, "No directory given for --git-dir.\n" );
95 usage(git_usage_string);
96 }
45b09794 97 setenv(GIT_DIR_ENVIRONMENT, (*argv)[1], 1);
4394efec
ML
98 if (envchanged)
99 *envchanged = 1;
6acbcb92
JS
100 (*argv)++;
101 (*argc)--;
e4b02333 102 handled++;
cc44c765 103 } else if (!prefixcmp(cmd, "--git-dir=")) {
45b09794 104 setenv(GIT_DIR_ENVIRONMENT, cmd + 10, 1);
4394efec
ML
105 if (envchanged)
106 *envchanged = 1;
892c41b9
ML
107 } else if (!strcmp(cmd, "--work-tree")) {
108 if (*argc < 2) {
109 fprintf(stderr, "No directory given for --work-tree.\n" );
110 usage(git_usage_string);
111 }
112 setenv(GIT_WORK_TREE_ENVIRONMENT, (*argv)[1], 1);
4394efec
ML
113 if (envchanged)
114 *envchanged = 1;
892c41b9
ML
115 (*argv)++;
116 (*argc)--;
117 } else if (!prefixcmp(cmd, "--work-tree=")) {
118 setenv(GIT_WORK_TREE_ENVIRONMENT, cmd + 12, 1);
4394efec
ML
119 if (envchanged)
120 *envchanged = 1;
6acbcb92 121 } else if (!strcmp(cmd, "--bare")) {
ef5ddb2f 122 static char git_dir[PATH_MAX+1];
6adcca3f 123 is_bare_repository_cfg = 1;
9277d602 124 setenv(GIT_DIR_ENVIRONMENT, getcwd(git_dir, sizeof(git_dir)), 0);
4394efec
ML
125 if (envchanged)
126 *envchanged = 1;
6acbcb92
JS
127 } else {
128 fprintf(stderr, "Unknown option: %s\n", cmd);
822a7d50 129 usage(git_usage_string);
6acbcb92 130 }
4ab243a9
JS
131
132 (*argv)++;
133 (*argc)--;
134 handled++;
135 }
136 return handled;
137}
138
2b11e317
JS
139static int handle_alias(int *argcp, const char ***argv)
140{
af05d679 141 int envchanged = 0, ret = 0, saved_errno = errno;
2b11e317 142 const char *subdir;
0347a8c7 143 int count, option_count;
4b25d091 144 const char **new_argv;
94351118
JK
145 const char *alias_command;
146 char *alias_string;
e85dc0a3 147 int unused_nongit;
2b11e317 148
e85dc0a3 149 subdir = setup_git_directory_gently(&unused_nongit);
0347a8c7
ML
150
151 alias_command = (*argv)[0];
94351118 152 alias_string = alias_lookup(alias_command);
0347a8c7 153 if (alias_string) {
dfd42a3c 154 if (alias_string[0] == '!') {
a2f8028d 155 if (*argcp > 1) {
7a33bcbe 156 struct strbuf buf;
a2f8028d 157
7a33bcbe
PH
158 strbuf_init(&buf, PATH_MAX);
159 strbuf_addstr(&buf, alias_string);
b319ce4c 160 sq_quote_argv(&buf, (*argv) + 1, PATH_MAX);
a2f8028d 161 free(alias_string);
7a33bcbe 162 alias_string = buf.buf;
a2f8028d 163 }
dfd42a3c
TT
164 trace_printf("trace: alias to shell cmd: %s => %s\n",
165 alias_command, alias_string + 1);
166 ret = system(alias_string + 1);
167 if (ret >= 0 && WIFEXITED(ret) &&
168 WEXITSTATUS(ret) != 127)
169 exit(WEXITSTATUS(ret));
d7530708 170 die("Failed to run '%s' when expanding alias '%s'",
dfd42a3c
TT
171 alias_string + 1, alias_command);
172 }
0347a8c7 173 count = split_cmdline(alias_string, &new_argv);
dc4179f9
DM
174 if (count < 0)
175 die("Bad alias.%s string", alias_command);
4394efec
ML
176 option_count = handle_options(&new_argv, &count, &envchanged);
177 if (envchanged)
178 die("alias '%s' changes environment variables\n"
179 "You can use '!git' in the alias to do this.",
180 alias_command);
0347a8c7
ML
181 memmove(new_argv - option_count, new_argv,
182 count * sizeof(char *));
183 new_argv -= option_count;
184
185 if (count < 1)
186 die("empty alias for %s", alias_command);
187
188 if (!strcmp(alias_command, new_argv[0]))
189 die("recursive alias: %s", alias_command);
190
b319ce4c 191 trace_argv_printf(new_argv,
6ce4e61f
CC
192 "trace: alias expansion: %s =>",
193 alias_command);
575ba9d6 194
4b25d091 195 new_argv = xrealloc(new_argv, sizeof(char *) *
6167c136 196 (count + *argcp));
0347a8c7 197 /* insert after command name */
4b25d091 198 memcpy(new_argv + count, *argv + 1, sizeof(char *) * *argcp);
2b11e317 199
0347a8c7
ML
200 *argv = new_argv;
201 *argcp += count - 1;
2b11e317 202
0347a8c7 203 ret = 1;
2b11e317
JS
204 }
205
7be77de2 206 if (subdir && chdir(subdir))
d824cbba 207 die_errno("Cannot change to '%s'", subdir);
2b11e317 208
47e5c0ca
JS
209 errno = saved_errno;
210
2b11e317
JS
211 return ret;
212}
213
70827b15 214const char git_version_string[] = GIT_VERSION;
5b84f4d8 215
efffea03
JH
216#define RUN_SETUP (1<<0)
217#define USE_PAGER (1<<1)
7eff28a9
SP
218/*
219 * require working tree to be present -- anything uses this needs
220 * RUN_SETUP for reading from the configuration file.
221 */
7ae3df8c 222#define NEED_WORK_TREE (1<<2)
a633fca0 223
47d0b4ff
LT
224struct cmd_struct {
225 const char *cmd;
226 int (*fn)(int, const char **, const char *);
227 int option;
228};
229
f172f334 230static int run_builtin(struct cmd_struct *p, int argc, const char **argv)
47d0b4ff 231{
0f157315
LT
232 int status;
233 struct stat st;
47d0b4ff
LT
234 const char *prefix;
235
236 prefix = NULL;
237 if (p->option & RUN_SETUP)
238 prefix = setup_git_directory();
4e10738a
JK
239
240 if (use_pager == -1 && p->option & RUN_SETUP)
241 use_pager = check_pager_config(p->cmd);
242 if (use_pager == -1 && p->option & USE_PAGER)
243 use_pager = 1;
244 commit_pager_choice();
245
59f0f2f3
MH
246 if (p->option & NEED_WORK_TREE)
247 setup_work_tree();
248
b319ce4c 249 trace_argv_printf(argv, "trace: built-in: git");
47d0b4ff 250
0f157315
LT
251 status = p->fn(argc, argv, prefix);
252 if (status)
47e3de0e 253 return status;
0f157315
LT
254
255 /* Somebody closed stdout? */
256 if (fstat(fileno(stdout), &st))
257 return 0;
258 /* Ignore write errors for pipes and sockets.. */
259 if (S_ISFIFO(st.st_mode) || S_ISSOCK(st.st_mode))
260 return 0;
261
262 /* Check for ENOSPC and EIO errors.. */
0227f988 263 if (fflush(stdout))
d824cbba 264 die_errno("write failure on standard output");
0227f988
LT
265 if (ferror(stdout))
266 die("unknown write failure on standard output");
267 if (fclose(stdout))
d824cbba 268 die_errno("close failed on standard output");
0f157315 269 return 0;
47d0b4ff
LT
270}
271
272static void handle_internal_command(int argc, const char **argv)
231af832
LT
273{
274 const char *cmd = argv[0];
47d0b4ff 275 static struct cmd_struct commands[] = {
7ae3df8c 276 { "add", cmd_add, RUN_SETUP | NEED_WORK_TREE },
11920d28 277 { "stage", cmd_add, RUN_SETUP | NEED_WORK_TREE },
d97bc5de 278 { "annotate", cmd_annotate, RUN_SETUP },
f754fa9c 279 { "apply", cmd_apply },
265d5280 280 { "archive", cmd_archive },
1bf072e3 281 { "bisect--helper", cmd_bisect__helper, RUN_SETUP | NEED_WORK_TREE },
4f0219a4 282 { "blame", cmd_blame, RUN_SETUP },
1da1b3a3 283 { "branch", cmd_branch, RUN_SETUP },
2e0afafe 284 { "bundle", cmd_bundle },
efffea03 285 { "cat-file", cmd_cat_file, RUN_SETUP },
782c2d65 286 { "checkout", cmd_checkout, RUN_SETUP | NEED_WORK_TREE },
4465f410
JS
287 { "checkout-index", cmd_checkout_index,
288 RUN_SETUP | NEED_WORK_TREE},
0864f264 289 { "check-ref-format", cmd_check_ref_format },
2d35d556 290 { "check-attr", cmd_check_attr, RUN_SETUP },
e827633a 291 { "cherry", cmd_cherry, RUN_SETUP },
7ae3df8c 292 { "cherry-pick", cmd_cherry_pick, RUN_SETUP | NEED_WORK_TREE },
8434c2f1 293 { "clone", cmd_clone },
113f10f2 294 { "clean", cmd_clean, RUN_SETUP | NEED_WORK_TREE },
f5bbc322 295 { "commit", cmd_commit, RUN_SETUP | NEED_WORK_TREE },
efffea03 296 { "commit-tree", cmd_commit_tree, RUN_SETUP },
e0d10e1c 297 { "config", cmd_config },
8112894d 298 { "count-objects", cmd_count_objects, RUN_SETUP },
9a0eaf83 299 { "describe", cmd_describe, RUN_SETUP },
89d07f75 300 { "diff", cmd_diff },
4f38f6b5 301 { "diff-files", cmd_diff_files, RUN_SETUP | NEED_WORK_TREE },
efffea03 302 { "diff-index", cmd_diff_index, RUN_SETUP },
efffea03 303 { "diff-tree", cmd_diff_tree, RUN_SETUP },
f2dc849e 304 { "fast-export", cmd_fast_export, RUN_SETUP },
b888d61c 305 { "fetch", cmd_fetch, RUN_SETUP },
2d4177c0 306 { "fetch-pack", cmd_fetch_pack, RUN_SETUP },
d4289fff 307 { "fetch--tool", cmd_fetch__tool, RUN_SETUP },
efffea03 308 { "fmt-merge-msg", cmd_fmt_merge_msg, RUN_SETUP },
9f613ddd 309 { "for-each-ref", cmd_for_each_ref, RUN_SETUP },
efffea03 310 { "format-patch", cmd_format_patch, RUN_SETUP },
b4dfefe0
MW
311 { "fsck", cmd_fsck, RUN_SETUP },
312 { "fsck-objects", cmd_fsck, RUN_SETUP },
6757ada4 313 { "gc", cmd_gc, RUN_SETUP },
f754fa9c 314 { "get-tar-commit-id", cmd_get_tar_commit_id },
34c6a82b 315 { "grep", cmd_grep, RUN_SETUP | USE_PAGER },
f754fa9c 316 { "help", cmd_help },
515377ea 317 { "init", cmd_init_db },
f754fa9c 318 { "init-db", cmd_init_db },
efffea03
JH
319 { "log", cmd_log, RUN_SETUP | USE_PAGER },
320 { "ls-files", cmd_ls_files, RUN_SETUP },
321 { "ls-tree", cmd_ls_tree, RUN_SETUP },
8951d7c1 322 { "ls-remote", cmd_ls_remote },
f754fa9c
JH
323 { "mailinfo", cmd_mailinfo },
324 { "mailsplit", cmd_mailsplit },
1c7b76be 325 { "merge", cmd_merge, RUN_SETUP | NEED_WORK_TREE },
71dfbf22 326 { "merge-base", cmd_merge_base, RUN_SETUP },
ba1f5f35 327 { "merge-file", cmd_merge_file },
a00a42ae 328 { "merge-ours", cmd_merge_ours, RUN_SETUP },
e1b3a2ca 329 { "merge-recursive", cmd_merge_recursive, RUN_SETUP | NEED_WORK_TREE },
1736855c 330 { "merge-subtree", cmd_merge_recursive, RUN_SETUP | NEED_WORK_TREE },
633e3556 331 { "mktree", cmd_mktree, RUN_SETUP },
7ae3df8c 332 { "mv", cmd_mv, RUN_SETUP | NEED_WORK_TREE },
efffea03
JH
333 { "name-rev", cmd_name_rev, RUN_SETUP },
334 { "pack-objects", cmd_pack_objects, RUN_SETUP },
8951d7c1 335 { "peek-remote", cmd_ls_remote },
d97bc5de 336 { "pickaxe", cmd_blame, RUN_SETUP },
efffea03
JH
337 { "prune", cmd_prune, RUN_SETUP },
338 { "prune-packed", cmd_prune_packed, RUN_SETUP },
102cb085 339 { "push", cmd_push, RUN_SETUP },
efffea03 340 { "read-tree", cmd_read_tree, RUN_SETUP },
be5908ae 341 { "receive-pack", cmd_receive_pack },
4264dc15 342 { "reflog", cmd_reflog, RUN_SETUP },
211c8968 343 { "remote", cmd_remote, RUN_SETUP },
54b0c1e0 344 { "replace", cmd_replace, RUN_SETUP },
e0d10e1c 345 { "repo-config", cmd_config },
658f3650 346 { "rerere", cmd_rerere, RUN_SETUP },
0e5a7faa 347 { "reset", cmd_reset, RUN_SETUP },
efffea03 348 { "rev-list", cmd_rev_list, RUN_SETUP },
5410a02a 349 { "rev-parse", cmd_rev_parse },
7ae3df8c 350 { "revert", cmd_revert, RUN_SETUP | NEED_WORK_TREE },
271bb087 351 { "rm", cmd_rm, RUN_SETUP },
96249c04 352 { "send-pack", cmd_send_pack, RUN_SETUP },
abe549e1 353 { "shortlog", cmd_shortlog, USE_PAGER },
efffea03
JH
354 { "show-branch", cmd_show_branch, RUN_SETUP },
355 { "show", cmd_show, RUN_SETUP | USE_PAGER },
10762323 356 { "status", cmd_status, RUN_SETUP | NEED_WORK_TREE },
f754fa9c 357 { "stripspace", cmd_stripspace },
efffea03 358 { "symbolic-ref", cmd_symbolic_ref, RUN_SETUP },
62e09ce9 359 { "tag", cmd_tag, RUN_SETUP },
9cb90b80 360 { "tar-tree", cmd_tar_tree },
efffea03
JH
361 { "unpack-objects", cmd_unpack_objects, RUN_SETUP },
362 { "update-index", cmd_update_index, RUN_SETUP },
363 { "update-ref", cmd_update_ref, RUN_SETUP },
53a1116c 364 { "update-server-info", cmd_update_server_info, RUN_SETUP },
39345a21 365 { "upload-archive", cmd_upload_archive },
2ae68fcb 366 { "verify-tag", cmd_verify_tag, RUN_SETUP },
f754fa9c 367 { "version", cmd_version },
efffea03
JH
368 { "whatchanged", cmd_whatchanged, RUN_SETUP | USE_PAGER },
369 { "write-tree", cmd_write_tree, RUN_SETUP },
2e3ed670 370 { "verify-pack", cmd_verify_pack },
358ddb62 371 { "show-ref", cmd_show_ref, RUN_SETUP },
e1e22e37 372 { "pack-refs", cmd_pack_refs, RUN_SETUP },
231af832
LT
373 };
374 int i;
23326d14
JS
375 static const char ext[] = STRIP_EXTENSION;
376
377 if (sizeof(ext) > 1) {
378 i = strlen(argv[0]) - strlen(ext);
379 if (i > 0 && !strcmp(argv[0] + i, ext)) {
e8eec71d 380 char *argv0 = xstrdup(argv[0]);
23326d14
JS
381 argv[0] = cmd = argv0;
382 argv0[i] = '\0';
383 }
384 }
231af832 385
1cd95087
LT
386 /* Turn "git cmd --help" into "git help cmd" */
387 if (argc > 1 && !strcmp(argv[1], "--help")) {
388 argv[1] = argv[0];
389 argv[0] = cmd = "help";
390 }
391
231af832
LT
392 for (i = 0; i < ARRAY_SIZE(commands); i++) {
393 struct cmd_struct *p = commands+i;
394 if (strcmp(p->cmd, cmd))
395 continue;
f172f334 396 exit(run_builtin(p, argc, argv));
231af832
LT
397 }
398}
399
7550be0a
JH
400static void execv_dashed_external(const char **argv)
401{
f285a2d7 402 struct strbuf cmd = STRBUF_INIT;
7550be0a 403 const char *tmp;
d8e96fd8 404 int status;
7550be0a 405
7550be0a
JH
406 strbuf_addf(&cmd, "git-%s", argv[0]);
407
408 /*
409 * argv[0] must be the git command, but the argv array
410 * belongs to the caller, and may be reused in
411 * subsequent loop iterations. Save argv[0] and
412 * restore it on error.
413 */
414 tmp = argv[0];
415 argv[0] = cmd.buf;
416
417 trace_argv_printf(argv, "trace: exec:");
418
d8e96fd8
JK
419 /*
420 * if we fail because the command is not found, it is
421 * OK to return. Otherwise, we just pass along the status code.
422 */
c024beb5 423 status = run_command_v_opt(argv, RUN_SILENT_EXEC_FAILURE);
0ac77ec3 424 if (status >= 0 || errno != ENOENT)
5709e036 425 exit(status);
7550be0a
JH
426
427 argv[0] = tmp;
428
429 strbuf_release(&cmd);
430}
431
a907e1b6
AS
432static int run_argv(int *argcp, const char ***argv)
433{
434 int done_alias = 0;
435
436 while (1) {
437 /* See if it's an internal command */
438 handle_internal_command(*argcp, *argv);
439
440 /* .. then try the external ones */
441 execv_dashed_external(*argv);
442
443 /* It could be an alias -- this works around the insanity
444 * of overriding "git log" with "git show" by having
445 * alias.log = show
446 */
447 if (done_alias || !handle_alias(argcp, argv))
448 break;
449 done_alias = 1;
450 }
451
452 return done_alias;
453}
454
7550be0a 455
47d0b4ff 456int main(int argc, const char **argv)
8e49d503 457{
4dd47c3b 458 const char *cmd;
231af832 459
2cd72b0b
SP
460 cmd = git_extract_argv0_path(argv[0]);
461 if (!cmd)
4dd47c3b 462 cmd = "git-help";
8e49d503 463
231af832
LT
464 /*
465 * "git-xxxx" is the same as "git xxxx", but we obviously:
466 *
467 * - cannot take flags in between the "git" and the "xxxx".
468 * - cannot execute it externally (since it would just do
469 * the same thing over again)
470 *
471 * So we just directly call the internal command handler, and
472 * die if that one cannot handle it.
473 */
cc44c765 474 if (!prefixcmp(cmd, "git-")) {
231af832
LT
475 cmd += 4;
476 argv[0] = cmd;
47d0b4ff 477 handle_internal_command(argc, argv);
231af832
LT
478 die("cannot handle %s internally", cmd);
479 }
8e49d503 480
231af832 481 /* Look for flags.. */
6acbcb92
JS
482 argv++;
483 argc--;
4394efec 484 handle_options(&argv, &argc, NULL);
4e10738a 485 commit_pager_choice();
6acbcb92 486 if (argc > 0) {
cc44c765 487 if (!prefixcmp(argv[0], "--"))
6acbcb92
JS
488 argv[0] += 2;
489 } else {
3d7e2d85
SP
490 /* The user didn't specify a command; give them help */
491 printf("usage: %s\n\n", git_usage_string);
492 list_common_cmds_help();
b7d96819 493 printf("\n%s\n", git_more_info_string);
3d7e2d85 494 exit(1);
97fc6c5f 495 }
6acbcb92 496 cmd = argv[0];
231af832
LT
497
498 /*
511707d4 499 * We use PATH to find git commands, but we prepend some higher
3ea3c215 500 * precedence paths: the "--exec-path" option, the GIT_EXEC_PATH
511707d4
SP
501 * environment, and the $(gitexecdir) from the Makefile at build
502 * time.
231af832 503 */
e1464ca7 504 setup_path();
8e49d503 505
a025463b 506 while (1) {
a907e1b6
AS
507 static int done_help = 0;
508 static int was_alias = 0;
509 was_alias = run_argv(&argc, &argv);
510 if (errno != ENOENT)
a025463b 511 break;
a907e1b6 512 if (was_alias) {
f3dd015c
TT
513 fprintf(stderr, "Expansion of alias '%s' failed; "
514 "'%s' is not a git-command\n",
515 cmd, argv[0]);
516 exit(1);
517 }
a907e1b6
AS
518 if (!done_help) {
519 cmd = argv[0] = help_unknown_cmd(cmd);
520 done_help = 1;
521 } else
522 break;
f3dd015c 523 }
10b15b86
AR
524
525 fprintf(stderr, "Failed to run command '%s': %s\n",
33ebb871 526 cmd, strerror(errno));
8e49d503
AE
527
528 return 1;
529}