11 #include "git-compat-util.h"
18 static void prepend_to_path(const char *dir
, int len
)
20 const char *old_path
= getenv("PATH");
25 old_path
= "/usr/local/bin:/usr/bin:/bin";
27 path_len
= len
+ strlen(old_path
) + 1;
29 path
= malloc(path_len
+ 1);
31 memcpy(path
, dir
, len
);
33 memcpy(path
+ len
+ 1, old_path
, path_len
- len
);
35 setenv("PATH", path
, 1);
38 static const char *alias_command
;
39 static char *alias_string
= NULL
;
41 static int git_alias_config(const char *var
, const char *value
)
43 if (!strncmp(var
, "alias.", 6) && !strcmp(var
+ 6, alias_command
)) {
44 alias_string
= strdup(value
);
49 static int split_cmdline(char *cmdline
, const char ***argv
)
51 int src
, dst
, count
= 0, size
= 16;
54 *argv
= malloc(sizeof(char*) * size
);
56 /* split alias_string */
57 (*argv
)[count
++] = cmdline
;
58 for (src
= dst
= 0; cmdline
[src
];) {
59 char c
= cmdline
[src
];
60 if (!quoted
&& isspace(c
)) {
63 && isspace(cmdline
[src
]))
67 *argv
= realloc(*argv
, sizeof(char*) * size
);
69 (*argv
)[count
++] = cmdline
+ dst
;
70 } else if(!quoted
&& (c
== '\'' || c
== '"')) {
73 } else if (c
== quoted
) {
77 if (c
== '\\' && quoted
!= '\'') {
83 return error("cmdline ends with \\");
96 return error("unclosed quote");
102 static int handle_alias(int *argcp
, const char ***argv
)
104 int nongit
= 0, ret
= 0, saved_errno
= errno
;
107 subdir
= setup_git_directory_gently(&nongit
);
110 const char** new_argv
;
112 alias_command
= (*argv
)[0];
113 git_config(git_alias_config
);
116 count
= split_cmdline(alias_string
, &new_argv
);
119 die("empty alias for %s", alias_command
);
121 if (!strcmp(alias_command
, new_argv
[0]))
122 die("recursive alias: %s", alias_command
);
124 if (getenv("GIT_TRACE")) {
126 fprintf(stderr
, "trace: alias expansion: %s =>",
128 for (i
= 0; i
< count
; ++i
) {
130 sq_quote_print(stderr
, new_argv
[i
]);
136 /* insert after command name */
138 new_argv
= realloc(new_argv
, sizeof(char*) *
140 memcpy(new_argv
+ count
, *argv
+ 1,
141 sizeof(char*) * *argcp
);
159 const char git_version_string
[] = GIT_VERSION
;
161 static void handle_internal_command(int argc
, const char **argv
, char **envp
)
163 const char *cmd
= argv
[0];
164 static struct cmd_struct
{
166 int (*fn
)(int, const char **, char **);
168 { "version", cmd_version
},
169 { "help", cmd_help
},
171 { "whatchanged", cmd_whatchanged
},
172 { "show", cmd_show
},
173 { "push", cmd_push
},
174 { "format-patch", cmd_format_patch
},
175 { "count-objects", cmd_count_objects
},
176 { "diff", cmd_diff
},
177 { "grep", cmd_grep
},
180 { "rev-list", cmd_rev_list
},
181 { "init-db", cmd_init_db
},
182 { "get-tar-commit-id", cmd_get_tar_commit_id
},
183 { "upload-tar", cmd_upload_tar
},
184 { "check-ref-format", cmd_check_ref_format
},
185 { "ls-files", cmd_ls_files
},
186 { "ls-tree", cmd_ls_tree
},
187 { "tar-tree", cmd_tar_tree
},
188 { "read-tree", cmd_read_tree
},
189 { "commit-tree", cmd_commit_tree
},
190 { "apply", cmd_apply
},
191 { "show-branch", cmd_show_branch
},
192 { "diff-files", cmd_diff_files
},
193 { "diff-index", cmd_diff_index
},
194 { "diff-stages", cmd_diff_stages
},
195 { "diff-tree", cmd_diff_tree
},
196 { "cat-file", cmd_cat_file
},
197 { "rev-parse", cmd_rev_parse
},
198 { "write-tree", cmd_write_tree
},
199 { "mailsplit", cmd_mailsplit
},
200 { "mailinfo", cmd_mailinfo
},
201 { "stripspace", cmd_stripspace
},
202 { "update-index", cmd_update_index
},
203 { "update-ref", cmd_update_ref
},
204 { "fmt-merge-msg", cmd_fmt_merge_msg
},
205 { "prune", cmd_prune
},
209 /* Turn "git cmd --help" into "git help cmd" */
210 if (argc
> 1 && !strcmp(argv
[1], "--help")) {
212 argv
[0] = cmd
= "help";
215 for (i
= 0; i
< ARRAY_SIZE(commands
); i
++) {
216 struct cmd_struct
*p
= commands
+i
;
217 if (strcmp(p
->cmd
, cmd
))
220 if (getenv("GIT_TRACE")) {
222 fprintf(stderr
, "trace: built-in: git");
223 for (i
= 0; i
< argc
; ++i
) {
225 sq_quote_print(stderr
, argv
[i
]);
231 exit(p
->fn(argc
, argv
, envp
));
235 int main(int argc
, const char **argv
, char **envp
)
237 const char *cmd
= argv
[0];
238 char *slash
= strrchr(cmd
, '/');
239 const char *exec_path
= NULL
;
243 * Take the basename of argv[0] as the command
244 * name, and the dirname as the default exec_path
245 * if it's an absolute path and we don't have
256 * "git-xxxx" is the same as "git xxxx", but we obviously:
258 * - cannot take flags in between the "git" and the "xxxx".
259 * - cannot execute it externally (since it would just do
260 * the same thing over again)
262 * So we just directly call the internal command handler, and
263 * die if that one cannot handle it.
265 if (!strncmp(cmd
, "git-", 4)) {
268 handle_internal_command(argc
, argv
, envp
);
269 die("cannot handle %s internally", cmd
);
272 /* Default command: "help" */
275 /* Look for flags.. */
280 if (!strcmp(cmd
, "-p") || !strcmp(cmd
, "--paginate")) {
285 if (strncmp(cmd
, "--", 2))
291 * For legacy reasons, the "version" and "help"
292 * commands can be written with "--" prepended
293 * to make them look like flags.
295 if (!strcmp(cmd
, "help"))
297 if (!strcmp(cmd
, "version"))
301 * Check remaining flags (which by now must be
302 * "--exec-path", but maybe we will accept
303 * other arguments some day)
305 if (!strncmp(cmd
, "exec-path", 9)) {
308 git_set_exec_path(cmd
+ 1);
311 puts(git_exec_path());
314 cmd_usage(0, NULL
, NULL
);
319 * We search for git commands in the following order:
321 * - the path of the "git" command if we could find it
323 * - the regular PATH.
326 prepend_to_path(exec_path
, strlen(exec_path
));
327 exec_path
= git_exec_path();
328 prepend_to_path(exec_path
, strlen(exec_path
));
331 /* See if it's an internal command */
332 handle_internal_command(argc
, argv
, envp
);
334 /* .. then try the external ones */
337 /* It could be an alias -- this works around the insanity
338 * of overriding "git log" with "git show" by having
341 if (done_alias
|| !handle_alias(&argc
, &argv
))
347 cmd_usage(0, exec_path
, "'%s' is not a git-command", cmd
);
349 fprintf(stderr
, "Failed to run command '%s': %s\n",
350 cmd
, strerror(errno
));