6 const char git_usage_string
[] =
7 "git [--version] [--exec-path[=GIT_EXEC_PATH]] [-p|--paginate] [--bare] [--git-dir=GIT_DIR] [--help] COMMAND [ARGS]";
9 static void prepend_to_path(const char *dir
, int len
)
11 const char *old_path
= getenv("PATH");
16 old_path
= "/usr/local/bin:/usr/bin:/bin";
18 path_len
= len
+ strlen(old_path
) + 1;
20 path
= xmalloc(path_len
+ 1);
22 memcpy(path
, dir
, len
);
24 memcpy(path
+ len
+ 1, old_path
, path_len
- len
);
26 setenv("PATH", path
, 1);
31 static int handle_options(const char*** argv
, int* argc
)
36 const char *cmd
= (*argv
)[0];
41 * For legacy reasons, the "version" and "help"
42 * commands can be written with "--" prepended
43 * to make them look like flags.
45 if (!strcmp(cmd
, "--help") || !strcmp(cmd
, "--version"))
49 * Check remaining flags.
51 if (!prefixcmp(cmd
, "--exec-path")) {
54 git_set_exec_path(cmd
+ 1);
56 puts(git_exec_path());
59 } else if (!strcmp(cmd
, "-p") || !strcmp(cmd
, "--paginate")) {
61 } else if (!strcmp(cmd
, "--git-dir")) {
63 fprintf(stderr
, "No directory given for --git-dir.\n" );
64 usage(git_usage_string
);
66 setenv(GIT_DIR_ENVIRONMENT
, (*argv
)[1], 1);
70 } else if (!prefixcmp(cmd
, "--git-dir=")) {
71 setenv(GIT_DIR_ENVIRONMENT
, cmd
+ 10, 1);
72 } else if (!strcmp(cmd
, "--bare")) {
73 static char git_dir
[PATH_MAX
+1];
74 setenv(GIT_DIR_ENVIRONMENT
, getcwd(git_dir
, sizeof(git_dir
)), 1);
76 fprintf(stderr
, "Unknown option: %s\n", cmd
);
77 usage(git_usage_string
);
87 static const char *alias_command
;
88 static char *alias_string
;
90 static int git_alias_config(const char *var
, const char *value
)
92 if (!prefixcmp(var
, "alias.") && !strcmp(var
+ 6, alias_command
)) {
93 alias_string
= xstrdup(value
);
98 static int split_cmdline(char *cmdline
, const char ***argv
)
100 int src
, dst
, count
= 0, size
= 16;
103 *argv
= xmalloc(sizeof(char*) * size
);
105 /* split alias_string */
106 (*argv
)[count
++] = cmdline
;
107 for (src
= dst
= 0; cmdline
[src
];) {
108 char c
= cmdline
[src
];
109 if (!quoted
&& isspace(c
)) {
111 while (cmdline
[++src
]
112 && isspace(cmdline
[src
]))
116 *argv
= xrealloc(*argv
, sizeof(char*) * size
);
118 (*argv
)[count
++] = cmdline
+ dst
;
119 } else if(!quoted
&& (c
== '\'' || c
== '"')) {
122 } else if (c
== quoted
) {
126 if (c
== '\\' && quoted
!= '\'') {
132 return error("cmdline ends with \\");
145 return error("unclosed quote");
151 static int handle_alias(int *argcp
, const char ***argv
)
153 int nongit
= 0, ret
= 0, saved_errno
= errno
;
155 int count
, option_count
;
156 const char** new_argv
;
158 subdir
= setup_git_directory_gently(&nongit
);
160 alias_command
= (*argv
)[0];
161 git_config(git_alias_config
);
163 if (alias_string
[0] == '!') {
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
));
170 die("Failed to run '%s' when expanding alias '%s'\n",
171 alias_string
+ 1, alias_command
);
173 count
= split_cmdline(alias_string
, &new_argv
);
174 option_count
= handle_options(&new_argv
, &count
);
175 memmove(new_argv
- option_count
, new_argv
,
176 count
* sizeof(char *));
177 new_argv
-= option_count
;
180 die("empty alias for %s", alias_command
);
182 if (!strcmp(alias_command
, new_argv
[0]))
183 die("recursive alias: %s", alias_command
);
185 trace_argv_printf(new_argv
, count
,
186 "trace: alias expansion: %s =>",
189 new_argv
= xrealloc(new_argv
, sizeof(char*) *
190 (count
+ *argcp
+ 1));
191 /* insert after command name */
192 memcpy(new_argv
+ count
, *argv
+ 1, sizeof(char*) * *argcp
);
193 new_argv
[count
+*argcp
] = NULL
;
209 const char git_version_string
[] = GIT_VERSION
;
211 #define RUN_SETUP (1<<0)
212 #define USE_PAGER (1<<1)
214 * require working tree to be present -- anything uses this needs
215 * RUN_SETUP for reading from the configuration file.
217 #define NOT_BARE (1<<2)
221 int (*fn
)(int, const char **, const char *);
225 static int run_command(struct cmd_struct
*p
, int argc
, const char **argv
)
232 if (p
->option
& RUN_SETUP
)
233 prefix
= setup_git_directory();
234 if (p
->option
& USE_PAGER
)
236 if (p
->option
& NOT_BARE
) {
237 if (is_bare_repository() || is_inside_git_dir())
238 die("%s must be run in a work tree", p
->cmd
);
240 trace_argv_printf(argv
, argc
, "trace: built-in: git");
242 status
= p
->fn(argc
, argv
, prefix
);
246 /* Somebody closed stdout? */
247 if (fstat(fileno(stdout
), &st
))
249 /* Ignore write errors for pipes and sockets.. */
250 if (S_ISFIFO(st
.st_mode
) || S_ISSOCK(st
.st_mode
))
253 /* Check for ENOSPC and EIO errors.. */
255 die("write failure on standard output: %s", strerror(errno
));
257 die("unknown write failure on standard output");
259 die("close failed on standard output: %s", strerror(errno
));
263 static void handle_internal_command(int argc
, const char **argv
)
265 const char *cmd
= argv
[0];
266 static struct cmd_struct commands
[] = {
267 { "add", cmd_add
, RUN_SETUP
| NOT_BARE
},
268 { "annotate", cmd_annotate
, RUN_SETUP
| USE_PAGER
},
269 { "apply", cmd_apply
},
270 { "archive", cmd_archive
},
271 { "blame", cmd_blame
, RUN_SETUP
},
272 { "branch", cmd_branch
, RUN_SETUP
},
273 { "bundle", cmd_bundle
},
274 { "cat-file", cmd_cat_file
, RUN_SETUP
},
275 { "checkout-index", cmd_checkout_index
, RUN_SETUP
},
276 { "check-ref-format", cmd_check_ref_format
},
277 { "check-attr", cmd_check_attr
, RUN_SETUP
| NOT_BARE
},
278 { "cherry", cmd_cherry
, RUN_SETUP
},
279 { "cherry-pick", cmd_cherry_pick
, RUN_SETUP
| NOT_BARE
},
280 { "commit-tree", cmd_commit_tree
, RUN_SETUP
},
281 { "config", cmd_config
},
282 { "count-objects", cmd_count_objects
, RUN_SETUP
},
283 { "describe", cmd_describe
, RUN_SETUP
},
284 { "diff", cmd_diff
, USE_PAGER
},
285 { "diff-files", cmd_diff_files
},
286 { "diff-index", cmd_diff_index
, RUN_SETUP
},
287 { "diff-tree", cmd_diff_tree
, RUN_SETUP
},
288 { "fetch--tool", cmd_fetch__tool
, RUN_SETUP
},
289 { "fmt-merge-msg", cmd_fmt_merge_msg
, RUN_SETUP
},
290 { "for-each-ref", cmd_for_each_ref
, RUN_SETUP
},
291 { "format-patch", cmd_format_patch
, RUN_SETUP
},
292 { "fsck", cmd_fsck
, RUN_SETUP
},
293 { "fsck-objects", cmd_fsck
, RUN_SETUP
},
294 { "gc", cmd_gc
, RUN_SETUP
},
295 { "get-tar-commit-id", cmd_get_tar_commit_id
},
296 { "grep", cmd_grep
, RUN_SETUP
| USE_PAGER
},
297 { "help", cmd_help
},
298 { "init", cmd_init_db
},
299 { "init-db", cmd_init_db
},
300 { "log", cmd_log
, RUN_SETUP
| USE_PAGER
},
301 { "ls-files", cmd_ls_files
, RUN_SETUP
},
302 { "ls-tree", cmd_ls_tree
, RUN_SETUP
},
303 { "mailinfo", cmd_mailinfo
},
304 { "mailsplit", cmd_mailsplit
},
305 { "merge-base", cmd_merge_base
, RUN_SETUP
},
306 { "merge-file", cmd_merge_file
},
307 { "mv", cmd_mv
, RUN_SETUP
| NOT_BARE
},
308 { "name-rev", cmd_name_rev
, RUN_SETUP
},
309 { "pack-objects", cmd_pack_objects
, RUN_SETUP
},
310 { "pickaxe", cmd_blame
, RUN_SETUP
| USE_PAGER
},
311 { "prune", cmd_prune
, RUN_SETUP
},
312 { "prune-packed", cmd_prune_packed
, RUN_SETUP
},
313 { "push", cmd_push
, RUN_SETUP
},
314 { "read-tree", cmd_read_tree
, RUN_SETUP
},
315 { "reflog", cmd_reflog
, RUN_SETUP
},
316 { "repo-config", cmd_config
},
317 { "rerere", cmd_rerere
, RUN_SETUP
},
318 { "rev-list", cmd_rev_list
, RUN_SETUP
},
319 { "rev-parse", cmd_rev_parse
, RUN_SETUP
},
320 { "revert", cmd_revert
, RUN_SETUP
| NOT_BARE
},
321 { "rm", cmd_rm
, RUN_SETUP
| NOT_BARE
},
322 { "runstatus", cmd_runstatus
, RUN_SETUP
| NOT_BARE
},
323 { "shortlog", cmd_shortlog
, RUN_SETUP
| USE_PAGER
},
324 { "show-branch", cmd_show_branch
, RUN_SETUP
},
325 { "show", cmd_show
, RUN_SETUP
| USE_PAGER
},
326 { "stripspace", cmd_stripspace
},
327 { "symbolic-ref", cmd_symbolic_ref
, RUN_SETUP
},
328 { "tar-tree", cmd_tar_tree
},
329 { "unpack-objects", cmd_unpack_objects
, RUN_SETUP
},
330 { "update-index", cmd_update_index
, RUN_SETUP
},
331 { "update-ref", cmd_update_ref
, RUN_SETUP
},
332 { "upload-archive", cmd_upload_archive
},
333 { "version", cmd_version
},
334 { "whatchanged", cmd_whatchanged
, RUN_SETUP
| USE_PAGER
},
335 { "write-tree", cmd_write_tree
, RUN_SETUP
},
336 { "verify-pack", cmd_verify_pack
},
337 { "show-ref", cmd_show_ref
, RUN_SETUP
},
338 { "pack-refs", cmd_pack_refs
, RUN_SETUP
},
342 /* Turn "git cmd --help" into "git help cmd" */
343 if (argc
> 1 && !strcmp(argv
[1], "--help")) {
345 argv
[0] = cmd
= "help";
348 for (i
= 0; i
< ARRAY_SIZE(commands
); i
++) {
349 struct cmd_struct
*p
= commands
+i
;
350 if (strcmp(p
->cmd
, cmd
))
352 exit(run_command(p
, argc
, argv
));
356 int main(int argc
, const char **argv
)
358 const char *cmd
= argv
[0] ? argv
[0] : "git-help";
359 char *slash
= strrchr(cmd
, '/');
360 const char *exec_path
= NULL
;
364 * Take the basename of argv[0] as the command
365 * name, and the dirname as the default exec_path
366 * if it's an absolute path and we don't have
377 * "git-xxxx" is the same as "git xxxx", but we obviously:
379 * - cannot take flags in between the "git" and the "xxxx".
380 * - cannot execute it externally (since it would just do
381 * the same thing over again)
383 * So we just directly call the internal command handler, and
384 * die if that one cannot handle it.
386 if (!prefixcmp(cmd
, "git-")) {
389 handle_internal_command(argc
, argv
);
390 die("cannot handle %s internally", cmd
);
393 /* Look for flags.. */
396 handle_options(&argv
, &argc
);
398 if (!prefixcmp(argv
[0], "--"))
401 /* Default command: "help" */
408 * We search for git commands in the following order:
410 * - the path of the "git" command if we could find it
412 * - the regular PATH.
415 prepend_to_path(exec_path
, strlen(exec_path
));
416 exec_path
= git_exec_path();
417 prepend_to_path(exec_path
, strlen(exec_path
));
420 /* See if it's an internal command */
421 handle_internal_command(argc
, argv
);
423 /* .. then try the external ones */
426 /* It could be an alias -- this works around the insanity
427 * of overriding "git log" with "git show" by having
430 if (done_alias
|| !handle_alias(&argc
, &argv
))
435 if (errno
== ENOENT
) {
437 fprintf(stderr
, "Expansion of alias '%s' failed; "
438 "'%s' is not a git-command\n",
442 help_unknown_cmd(cmd
);
445 fprintf(stderr
, "Failed to run command '%s': %s\n",
446 cmd
, strerror(errno
));