11 #include "git-compat-util.h"
16 static void prepend_to_path(const char *dir
, int len
)
18 char *path
, *old_path
= getenv("PATH");
22 old_path
= "/usr/local/bin:/usr/bin:/bin";
24 path_len
= len
+ strlen(old_path
) + 1;
26 path
= malloc(path_len
+ 1);
28 memcpy(path
, dir
, len
);
30 memcpy(path
+ len
+ 1, old_path
, path_len
- len
);
32 setenv("PATH", path
, 1);
35 const char git_version_string
[] = GIT_VERSION
;
37 static void handle_internal_command(int argc
, const char **argv
, char **envp
)
39 const char *cmd
= argv
[0];
40 static struct cmd_struct
{
42 int (*fn
)(int, const char **, char **);
44 { "version", cmd_version
},
47 { "whatchanged", cmd_whatchanged
},
52 /* Turn "git cmd --help" into "git help cmd" */
53 if (argc
> 1 && !strcmp(argv
[1], "--help")) {
55 argv
[0] = cmd
= "help";
58 for (i
= 0; i
< ARRAY_SIZE(commands
); i
++) {
59 struct cmd_struct
*p
= commands
+i
;
60 if (strcmp(p
->cmd
, cmd
))
62 exit(p
->fn(argc
, argv
, envp
));
66 int main(int argc
, const char **argv
, char **envp
)
68 const char *cmd
= argv
[0];
69 char *slash
= strrchr(cmd
, '/');
70 char git_command
[PATH_MAX
+ 1];
71 const char *exec_path
= NULL
;
74 * Take the basename of argv[0] as the command
75 * name, and the dirname as the default exec_path
76 * if it's an absolute path and we don't have
87 * "git-xxxx" is the same as "git xxxx", but we obviously:
89 * - cannot take flags in between the "git" and the "xxxx".
90 * - cannot execute it externally (since it would just do
91 * the same thing over again)
93 * So we just directly call the internal command handler, and
94 * die if that one cannot handle it.
96 if (!strncmp(cmd
, "git-", 4)) {
99 handle_internal_command(argc
, argv
, envp
);
100 die("cannot handle %s internally", cmd
);
103 /* Default command: "help" */
106 /* Look for flags.. */
111 if (strncmp(cmd
, "--", 2))
117 * For legacy reasons, the "version" and "help"
118 * commands can be written with "--" prepended
119 * to make them look like flags.
121 if (!strcmp(cmd
, "help"))
123 if (!strcmp(cmd
, "version"))
127 * Check remaining flags (which by now must be
128 * "--exec-path", but maybe we will accept
129 * other arguments some day)
131 if (!strncmp(cmd
, "exec-path", 9)) {
134 git_set_exec_path(cmd
+ 1);
137 puts(git_exec_path());
140 cmd_usage(0, NULL
, NULL
);
145 * We search for git commands in the following order:
147 * - the path of the "git" command if we could find it
149 * - the regular PATH.
152 prepend_to_path(exec_path
, strlen(exec_path
));
153 exec_path
= git_exec_path();
154 prepend_to_path(exec_path
, strlen(exec_path
));
156 /* See if it's an internal command */
157 handle_internal_command(argc
, argv
, envp
);
159 /* .. then try the external ones */
163 cmd_usage(0, exec_path
, "'%s' is not a git-command", cmd
);
165 fprintf(stderr
, "Failed to run command '%s': %s\n",
166 git_command
, strerror(errno
));