Merge branch 'jt/http-redact-cookies' into maint
[git.git] / builtin / apply.c
blob48d3989331d9b7deeb034642a027729bd1267e38
1 #include "cache.h"
2 #include "builtin.h"
3 #include "parse-options.h"
4 #include "lockfile.h"
5 #include "apply.h"
7 static const char * const apply_usage[] = {
8 N_("git apply [<options>] [<patch>...]"),
9 NULL
12 int cmd_apply(int argc, const char **argv, const char *prefix)
14 int force_apply = 0;
15 int options = 0;
16 int ret;
17 struct apply_state state;
19 if (init_apply_state(&state, prefix))
20 exit(128);
22 argc = apply_parse_options(argc, argv,
23 &state, &force_apply, &options,
24 apply_usage);
26 if (check_apply_state(&state, force_apply))
27 exit(128);
29 ret = apply_all_patches(&state, argc, argv, options);
31 clear_apply_state(&state);
33 return ret;