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 (!strncmp(cmd
, "--exec-path", 11)) {
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);
69 } else if (!strncmp(cmd
, "--git-dir=", 10)) {
70 setenv(GIT_DIR_ENVIRONMENT
, cmd
+ 10, 1);
71 } else if (!strcmp(cmd
, "--bare")) {
72 static char git_dir
[PATH_MAX
+1];
73 setenv(GIT_DIR_ENVIRONMENT
, getcwd(git_dir
, sizeof(git_dir
)), 1);
75 fprintf(stderr
, "Unknown option: %s\n", cmd
);
76 usage(git_usage_string
);
86 static const char *alias_command
;
87 static char *alias_string
;
89 static int git_alias_config(const char *var
, const char *value
)
91 if (!strncmp(var
, "alias.", 6) && !strcmp(var
+ 6, alias_command
)) {
92 alias_string
= xstrdup(value
);
97 static int split_cmdline(char *cmdline
, const char ***argv
)
99 int src
, dst
, count
= 0, size
= 16;
102 *argv
= malloc(sizeof(char*) * size
);
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
)) {
110 while (cmdline
[++src
]
111 && isspace(cmdline
[src
]))
115 *argv
= xrealloc(*argv
, sizeof(char*) * size
);
117 (*argv
)[count
++] = cmdline
+ dst
;
118 } else if(!quoted
&& (c
== '\'' || c
== '"')) {
121 } else if (c
== quoted
) {
125 if (c
== '\\' && quoted
!= '\'') {
131 return error("cmdline ends with \\");
144 return error("unclosed quote");
150 static int handle_alias(int *argcp
, const char ***argv
)
152 int nongit
= 0, ret
= 0, saved_errno
= errno
;
154 int count
, option_count
;
155 const char** new_argv
;
157 subdir
= setup_git_directory_gently(&nongit
);
159 alias_command
= (*argv
)[0];
160 git_config(git_alias_config
);
162 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
);
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 * require working tree to be present -- anything uses this needs
214 * RUN_SETUP for reading from the configuration file.
216 #define NOT_BARE (1<<2)
218 static void handle_internal_command(int argc
, const char **argv
, char **envp
)
220 const char *cmd
= argv
[0];
221 static struct cmd_struct
{
223 int (*fn
)(int, const char **, const char *);
226 { "add", cmd_add
, RUN_SETUP
| NOT_BARE
},
227 { "annotate", cmd_annotate
, USE_PAGER
},
228 { "apply", cmd_apply
},
229 { "archive", cmd_archive
},
230 { "blame", cmd_blame
, RUN_SETUP
},
231 { "branch", cmd_branch
, RUN_SETUP
},
232 { "cat-file", cmd_cat_file
, RUN_SETUP
},
233 { "checkout-index", cmd_checkout_index
, RUN_SETUP
},
234 { "check-ref-format", cmd_check_ref_format
},
235 { "cherry", cmd_cherry
, RUN_SETUP
},
236 { "commit-tree", cmd_commit_tree
, RUN_SETUP
},
237 { "config", cmd_config
},
238 { "count-objects", cmd_count_objects
, RUN_SETUP
},
239 { "describe", cmd_describe
, RUN_SETUP
},
240 { "diff", cmd_diff
, RUN_SETUP
| USE_PAGER
},
241 { "diff-files", cmd_diff_files
, RUN_SETUP
},
242 { "diff-index", cmd_diff_index
, RUN_SETUP
},
243 { "diff-stages", cmd_diff_stages
, RUN_SETUP
},
244 { "diff-tree", cmd_diff_tree
, RUN_SETUP
},
245 { "fmt-merge-msg", cmd_fmt_merge_msg
, RUN_SETUP
},
246 { "for-each-ref", cmd_for_each_ref
, RUN_SETUP
},
247 { "format-patch", cmd_format_patch
, RUN_SETUP
},
248 { "fsck", cmd_fsck
, RUN_SETUP
},
249 { "fsck-objects", cmd_fsck
, RUN_SETUP
},
250 { "get-tar-commit-id", cmd_get_tar_commit_id
},
251 { "grep", cmd_grep
, RUN_SETUP
},
252 { "help", cmd_help
},
253 { "init", cmd_init_db
},
254 { "init-db", cmd_init_db
},
255 { "log", cmd_log
, RUN_SETUP
| USE_PAGER
},
256 { "ls-files", cmd_ls_files
, RUN_SETUP
},
257 { "ls-tree", cmd_ls_tree
, RUN_SETUP
},
258 { "mailinfo", cmd_mailinfo
},
259 { "mailsplit", cmd_mailsplit
},
260 { "merge-file", cmd_merge_file
},
261 { "mv", cmd_mv
, RUN_SETUP
| NOT_BARE
},
262 { "name-rev", cmd_name_rev
, RUN_SETUP
},
263 { "pack-objects", cmd_pack_objects
, RUN_SETUP
},
264 { "pickaxe", cmd_blame
, RUN_SETUP
| USE_PAGER
},
265 { "prune", cmd_prune
, RUN_SETUP
},
266 { "prune-packed", cmd_prune_packed
, RUN_SETUP
},
267 { "push", cmd_push
, RUN_SETUP
},
268 { "read-tree", cmd_read_tree
, RUN_SETUP
},
269 { "reflog", cmd_reflog
, RUN_SETUP
},
270 { "repo-config", cmd_config
},
271 { "rerere", cmd_rerere
, RUN_SETUP
},
272 { "rev-list", cmd_rev_list
, RUN_SETUP
},
273 { "rev-parse", cmd_rev_parse
, RUN_SETUP
},
274 { "rm", cmd_rm
, RUN_SETUP
| NOT_BARE
},
275 { "runstatus", cmd_runstatus
, RUN_SETUP
| NOT_BARE
},
276 { "shortlog", cmd_shortlog
, RUN_SETUP
| USE_PAGER
},
277 { "show-branch", cmd_show_branch
, RUN_SETUP
},
278 { "show", cmd_show
, RUN_SETUP
| USE_PAGER
},
279 { "stripspace", cmd_stripspace
},
280 { "symbolic-ref", cmd_symbolic_ref
, RUN_SETUP
},
281 { "tar-tree", cmd_tar_tree
},
282 { "unpack-objects", cmd_unpack_objects
, RUN_SETUP
},
283 { "update-index", cmd_update_index
, RUN_SETUP
},
284 { "update-ref", cmd_update_ref
, RUN_SETUP
},
285 { "upload-archive", cmd_upload_archive
},
286 { "version", cmd_version
},
287 { "whatchanged", cmd_whatchanged
, RUN_SETUP
| USE_PAGER
},
288 { "write-tree", cmd_write_tree
, RUN_SETUP
},
289 { "verify-pack", cmd_verify_pack
},
290 { "show-ref", cmd_show_ref
, RUN_SETUP
},
291 { "pack-refs", cmd_pack_refs
, RUN_SETUP
},
295 /* Turn "git cmd --help" into "git help cmd" */
296 if (argc
> 1 && !strcmp(argv
[1], "--help")) {
298 argv
[0] = cmd
= "help";
301 for (i
= 0; i
< ARRAY_SIZE(commands
); i
++) {
302 struct cmd_struct
*p
= commands
+i
;
304 if (strcmp(p
->cmd
, cmd
))
308 if (p
->option
& RUN_SETUP
)
309 prefix
= setup_git_directory();
310 if (p
->option
& USE_PAGER
)
312 if ((p
->option
& NOT_BARE
) &&
313 (is_bare_repository() || is_inside_git_dir()))
314 die("%s must be run in a work tree", cmd
);
315 trace_argv_printf(argv
, argc
, "trace: built-in: git");
317 exit(p
->fn(argc
, argv
, prefix
));
321 int main(int argc
, const char **argv
, char **envp
)
323 const char *cmd
= argv
[0] ? argv
[0] : "git-help";
324 char *slash
= strrchr(cmd
, '/');
325 const char *exec_path
= NULL
;
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
342 * "git-xxxx" is the same as "git xxxx", but we obviously:
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)
348 * So we just directly call the internal command handler, and
349 * die if that one cannot handle it.
351 if (!strncmp(cmd
, "git-", 4)) {
354 handle_internal_command(argc
, argv
, envp
);
355 die("cannot handle %s internally", cmd
);
358 /* Look for flags.. */
361 handle_options(&argv
, &argc
);
363 if (!strncmp(argv
[0], "--", 2))
366 /* Default command: "help" */
373 * We search for git commands in the following order:
375 * - the path of the "git" command if we could find it
377 * - the regular PATH.
380 prepend_to_path(exec_path
, strlen(exec_path
));
381 exec_path
= git_exec_path();
382 prepend_to_path(exec_path
, strlen(exec_path
));
385 /* See if it's an internal command */
386 handle_internal_command(argc
, argv
, envp
);
388 /* .. then try the external ones */
391 /* It could be an alias -- this works around the insanity
392 * of overriding "git log" with "git show" by having
395 if (done_alias
|| !handle_alias(&argc
, &argv
))
400 if (errno
== ENOENT
) {
402 fprintf(stderr
, "Expansion of alias '%s' failed; "
403 "'%s' is not a git-command\n",
407 help_unknown_cmd(cmd
);
410 fprintf(stderr
, "Failed to run command '%s': %s\n",
411 cmd
, strerror(errno
));