1 #include "cache.h"
2 #include "builtin.h"
3 #include "parse-options.h"
4 #include "lockfile.h"
5 #include "apply.h"
6 
7 static const char * const apply_usage[] = {
8 	N_("git apply [<options>] [<patch>...]"),
9 	NULL
10 };
11 
cmd_apply(int argc,const char ** argv,const char * prefix)12 int cmd_apply(int argc, const char **argv, const char *prefix)
13 {
14 	int force_apply = 0;
15 	int options = 0;
16 	int ret;
17 	struct apply_state state;
18 
19 	if (init_apply_state(&state, the_repository, prefix))
20 		exit(128);
21 
22 	argc = apply_parse_options(argc, argv,
23 				   &state, &force_apply, &options,
24 				   apply_usage);
25 
26 	if (check_apply_state(&state, force_apply))
27 		exit(128);
28 
29 	ret = apply_all_patches(&state, argc, argv, options);
30 
31 	clear_apply_state(&state);
32 
33 	return ret;
34 }
35