11 #include "git-compat-util.h"
18 const char git_usage_string[] =
19 "git [--version] [--exec-path[=GIT_EXEC_PATH]] [-p|--paginate] [--bare] [--git-dir=GIT_DIR] [--help] COMMAND [ARGS]";
21 static void prepend_to_path(const char *dir, int len)
23 const char *old_path = getenv("PATH");
28 old_path = "/usr/local/bin:/usr/bin:/bin";
30 path_len = len + strlen(old_path) + 1;
32 path = xmalloc(path_len + 1);
34 memcpy(path, dir, len);
36 memcpy(path + len + 1, old_path, path_len - len);
38 setenv("PATH", path, 1);
43 static int handle_options(const char*** argv, int* argc)
48 const char *cmd = (*argv)[0];
53 * For legacy reasons, the "version" and "help"
54 * commands can be written with "--" prepended
55 * to make them look like flags.
57 if (!strcmp(cmd, "--help") || !strcmp(cmd, "--version"))
61 * Check remaining flags.
63 if (!strncmp(cmd, "--exec-path", 11)) {
66 git_set_exec_path(cmd + 1);
68 puts(git_exec_path());
71 } else if (!strcmp(cmd, "-p") || !strcmp(cmd, "--paginate")) {
73 } else if (!strcmp(cmd, "--git-dir")) {
76 setenv("GIT_DIR", (*argv)[1], 1);
79 } else if (!strncmp(cmd, "--git-dir=", 10)) {
80 setenv("GIT_DIR", cmd + 10, 1);
81 } else if (!strcmp(cmd, "--bare")) {
82 static char git_dir[1024];
83 setenv("GIT_DIR", getcwd(git_dir, 1024), 1);
85 fprintf(stderr, "Unknown option: %s\n", cmd);
86 usage(git_usage_string);
96 static const char *alias_command;
97 static char *alias_string;
99 static int git_alias_config(const char *var, const char *value)
101 if (!strncmp(var, "alias.", 6) && !strcmp(var + 6, alias_command)) {
102 alias_string = xstrdup(value);
107 static int split_cmdline(char *cmdline, const char ***argv)
109 int src, dst, count = 0, size = 16;
112 *argv = malloc(sizeof(char*) * size);
114 /* split alias_string */
115 (*argv)[count++] = cmdline;
116 for (src = dst = 0; cmdline[src];) {
117 char c = cmdline[src];
118 if (!quoted && isspace(c)) {
120 while (cmdline[++src]
121 && isspace(cmdline[src]))
125 *argv = xrealloc(*argv, sizeof(char*) * size);
127 (*argv)[count++] = cmdline + dst;
128 } else if(!quoted && (c == '\'' || c == '"')) {
131 } else if (c == quoted) {
135 if (c == '\\' && quoted != '\'') {
141 return error("cmdline ends with \\");
154 return error("unclosed quote");
160 static int handle_alias(int *argcp, const char ***argv)
162 int nongit = 0, ret = 0, saved_errno = errno;
164 int count, option_count;
165 const char** new_argv;
167 subdir = setup_git_directory_gently(&nongit);
169 alias_command = (*argv)[0];
170 git_config(git_alias_config);
172 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;
179 die("empty alias for %s", alias_command);
181 if (!strcmp(alias_command, new_argv[0]))
182 die("recursive alias: %s", alias_command);
184 trace_argv_printf(new_argv, count,
185 "trace: alias expansion: %s =>",
188 new_argv = xrealloc(new_argv, sizeof(char*) *
189 (count + *argcp + 1));
190 /* insert after command name */
191 memcpy(new_argv + count, *argv + 1, sizeof(char*) * *argcp);
192 new_argv[count+*argcp] = NULL;
208 const char git_version_string[] = GIT_VERSION;
210 #define RUN_SETUP (1<<0)
211 #define USE_PAGER (1<<1)
213 static void handle_internal_command(int argc, const char **argv, char **envp)
215 const char *cmd = argv[0];
216 static struct cmd_struct {
218 int (*fn)(int, const char **, const char *);
221 { "add", cmd_add, RUN_SETUP },
222 { "annotate", cmd_annotate, },
223 { "apply", cmd_apply },
224 { "archive", cmd_archive },
225 { "blame", cmd_blame, RUN_SETUP | USE_PAGER },
226 { "branch", cmd_branch, RUN_SETUP },
227 { "cat-file", cmd_cat_file, RUN_SETUP },
228 { "checkout-index", cmd_checkout_index, RUN_SETUP },
229 { "check-ref-format", cmd_check_ref_format },
230 { "cherry", cmd_cherry, RUN_SETUP },
231 { "commit-tree", cmd_commit_tree, RUN_SETUP },
232 { "count-objects", cmd_count_objects, RUN_SETUP },
233 { "diff", cmd_diff, RUN_SETUP | USE_PAGER },
234 { "diff-files", cmd_diff_files, RUN_SETUP },
235 { "diff-index", cmd_diff_index, RUN_SETUP },
236 { "diff-stages", cmd_diff_stages, RUN_SETUP },
237 { "diff-tree", cmd_diff_tree, RUN_SETUP },
238 { "fmt-merge-msg", cmd_fmt_merge_msg, RUN_SETUP },
239 { "for-each-ref", cmd_for_each_ref, RUN_SETUP },
240 { "format-patch", cmd_format_patch, RUN_SETUP },
241 { "get-tar-commit-id", cmd_get_tar_commit_id },
242 { "grep", cmd_grep, RUN_SETUP },
243 { "help", cmd_help },
244 { "init-db", cmd_init_db },
245 { "log", cmd_log, RUN_SETUP | USE_PAGER },
246 { "ls-files", cmd_ls_files, RUN_SETUP },
247 { "ls-tree", cmd_ls_tree, RUN_SETUP },
248 { "mailinfo", cmd_mailinfo },
249 { "mailsplit", cmd_mailsplit },
250 { "mv", cmd_mv, RUN_SETUP },
251 { "name-rev", cmd_name_rev, RUN_SETUP },
252 { "pack-objects", cmd_pack_objects, RUN_SETUP },
253 { "pickaxe", cmd_blame, RUN_SETUP | USE_PAGER },
254 { "prune", cmd_prune, RUN_SETUP },
255 { "prune-packed", cmd_prune_packed, RUN_SETUP },
256 { "push", cmd_push, RUN_SETUP },
257 { "read-tree", cmd_read_tree, RUN_SETUP },
258 { "repo-config", cmd_repo_config },
259 { "rev-list", cmd_rev_list, RUN_SETUP },
260 { "rev-parse", cmd_rev_parse, RUN_SETUP },
261 { "rm", cmd_rm, RUN_SETUP },
262 { "runstatus", cmd_runstatus, RUN_SETUP },
263 { "show-branch", cmd_show_branch, RUN_SETUP },
264 { "show", cmd_show, RUN_SETUP | USE_PAGER },
265 { "stripspace", cmd_stripspace },
266 { "symbolic-ref", cmd_symbolic_ref, RUN_SETUP },
267 { "tar-tree", cmd_tar_tree },
268 { "unpack-objects", cmd_unpack_objects, RUN_SETUP },
269 { "update-index", cmd_update_index, RUN_SETUP },
270 { "update-ref", cmd_update_ref, RUN_SETUP },
271 { "upload-archive", cmd_upload_archive },
272 { "version", cmd_version },
273 { "whatchanged", cmd_whatchanged, RUN_SETUP | USE_PAGER },
274 { "write-tree", cmd_write_tree, RUN_SETUP },
275 { "verify-pack", cmd_verify_pack },
276 { "show-ref", cmd_show_ref, RUN_SETUP },
277 { "pack-refs", cmd_pack_refs, RUN_SETUP },
281 /* Turn "git cmd --help" into "git help cmd" */
282 if (argc > 1 && !strcmp(argv[1], "--help")) {
284 argv[0] = cmd = "help";
287 for (i = 0; i < ARRAY_SIZE(commands); i++) {
288 struct cmd_struct *p = commands+i;
290 if (strcmp(p->cmd, cmd))
294 if (p->option & RUN_SETUP)
295 prefix = setup_git_directory();
296 if (p->option & USE_PAGER)
298 trace_argv_printf(argv, argc, "trace: built-in: git");
300 exit(p->fn(argc, argv, prefix));
304 int main(int argc, const char **argv, char **envp)
306 const char *cmd = argv[0] ? argv[0] : "git-help";
307 char *slash = strrchr(cmd, '/');
308 const char *exec_path = NULL;
312 * Take the basename of argv[0] as the command
313 * name, and the dirname as the default exec_path
314 * if it's an absolute path and we don't have
325 * "git-xxxx" is the same as "git xxxx", but we obviously:
327 * - cannot take flags in between the "git" and the "xxxx".
328 * - cannot execute it externally (since it would just do
329 * the same thing over again)
331 * So we just directly call the internal command handler, and
332 * die if that one cannot handle it.
334 if (!strncmp(cmd, "git-", 4)) {
337 handle_internal_command(argc, argv, envp);
338 die("cannot handle %s internally", cmd);
341 /* Look for flags.. */
344 handle_options(&argv, &argc);
346 if (!strncmp(argv[0], "--", 2))
349 /* Default command: "help" */
356 * We search for git commands in the following order:
358 * - the path of the "git" command if we could find it
360 * - the regular PATH.
363 prepend_to_path(exec_path, strlen(exec_path));
364 exec_path = git_exec_path();
365 prepend_to_path(exec_path, strlen(exec_path));
368 /* See if it's an internal command */
369 handle_internal_command(argc, argv, envp);
371 /* .. then try the external ones */
374 /* It could be an alias -- this works around the insanity
375 * of overriding "git log" with "git show" by having
378 if (done_alias || !handle_alias(&argc, &argv))
384 help_unknown_cmd(cmd);
386 fprintf(stderr, "Failed to run command '%s': %s\n",
387 cmd, strerror(errno));