From c8bae7493d2f2910b57f13ded012e86bdcfb0532 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 7 Apr 2024 16:47:53 +0200 Subject: Adding upstream version 1:2.39.2. Signed-off-by: Daniel Baumann --- builtin/apply.c | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 builtin/apply.c (limited to 'builtin/apply.c') diff --git a/builtin/apply.c b/builtin/apply.c new file mode 100644 index 0000000..555219d --- /dev/null +++ b/builtin/apply.c @@ -0,0 +1,33 @@ +#include "cache.h" +#include "builtin.h" +#include "parse-options.h" +#include "apply.h" + +static const char * const apply_usage[] = { + N_("git apply [] [...]"), + NULL +}; + +int cmd_apply(int argc, const char **argv, const char *prefix) +{ + int force_apply = 0; + int options = 0; + int ret; + struct apply_state state; + + if (init_apply_state(&state, the_repository, prefix)) + exit(128); + + argc = apply_parse_options(argc, argv, + &state, &force_apply, &options, + apply_usage); + + if (check_apply_state(&state, force_apply)) + exit(128); + + ret = apply_all_patches(&state, argc, argv, options); + + clear_apply_state(&state); + + return ret; +} -- cgit v1.2.3