Similar to 'git reset -N', this option makes 'git apply' automatically mark new files as intent-to-add so they are visible in the following 'git diff' command and could also be committed with 'git commit -a'. Signed-off-by: Nguyễn Thái Ngọc Duy <pclouds@xxxxxxxxx> --- Documentation/git-apply.txt | 9 ++++++++- apply.c | 38 +++++++++++++++++++++++++++++++------ apply.h | 1 + t/t2203-add-intent.sh | 12 ++++++++++++ 4 files changed, 53 insertions(+), 7 deletions(-) diff --git a/Documentation/git-apply.txt b/Documentation/git-apply.txt index 4ebc3d3271..2374f64b51 100644 --- a/Documentation/git-apply.txt +++ b/Documentation/git-apply.txt @@ -9,7 +9,7 @@ git-apply - Apply a patch to files and/or to the index SYNOPSIS -------- [verse] -'git apply' [--stat] [--numstat] [--summary] [--check] [--index] [--3way] +'git apply' [--stat] [--numstat] [--summary] [--check] [--index | --intent-to-add] [--3way] [--apply] [--no-add] [--build-fake-ancestor=<file>] [-R | --reverse] [--allow-binary-replacement | --binary] [--reject] [-z] [-p<n>] [-C<n>] [--inaccurate-eof] [--recount] [--cached] @@ -74,6 +74,13 @@ OPTIONS cached data, apply the patch, and store the result in the index without using the working tree. This implies `--index`. +--intent-to-add:: + When applying the patch only to the working tree, mark new + files to be added to the index later (see `--intent-to-add` + option in linkgit:git-add[1]). This option is ignored if + `--index` is present or the command is not run in a Git + repository. + -3:: --3way:: When the patch does not apply cleanly, fall back on 3-way merge if diff --git a/apply.c b/apply.c index 7e5792c996..31d3e50401 100644 --- a/apply.c +++ b/apply.c @@ -136,6 +136,8 @@ int check_apply_state(struct apply_state *state, int force_apply) state->apply = 0; if (state->check_index && is_not_gitdir) return error(_("--index outside a repository")); + if (state->set_ita && is_not_gitdir) + state->set_ita = 0; if (state->cached) { if (is_not_gitdir) return error(_("--cached outside a repository")); @@ -4265,9 +4267,6 @@ static int add_index_file(struct apply_state *state, int namelen = strlen(path); unsigned ce_size = cache_entry_size(namelen); - if (!state->update_index) - return 0; - ce = xcalloc(1, ce_size); memcpy(ce->name, path, namelen); ce->ce_mode = create_ce_mode(mode); @@ -4305,6 +4304,27 @@ static int add_index_file(struct apply_state *state, return 0; } +static int add_ita_file(struct apply_state *state, + const char *path, unsigned mode) +{ + struct cache_entry *ce; + int namelen = strlen(path); + unsigned ce_size = cache_entry_size(namelen); + + ce = xcalloc(1, ce_size); + memcpy(ce->name, path, namelen); + ce->ce_mode = create_ce_mode(mode); + ce->ce_flags = create_ce_flags(0) | CE_INTENT_TO_ADD; + ce->ce_namelen = namelen; + set_object_name_for_intent_to_add_entry(ce); + if (add_cache_entry(ce, ADD_CACHE_OK_TO_ADD) < 0) { + free(ce); + return error(_("unable to add cache entry for %s"), path); + } + + return 0; +} + /* * Returns: * -1 if an unrecoverable error happened @@ -4465,8 +4485,11 @@ static int create_file(struct apply_state *state, struct patch *patch) if (patch->conflicted_threeway) return add_conflicted_stages_file(state, patch); - else + else if (state->update_index) return add_index_file(state, path, mode, buf, size); + else if (state->set_ita) + return add_ita_file(state, path, mode); + return 0; } /* phase zero is to remove, phase one is to create */ @@ -4687,7 +4710,8 @@ static int apply_patch(struct apply_state *state, state->apply = 0; state->update_index = state->check_index && state->apply; - if (state->update_index && !is_lock_file_locked(&state->lock_file)) { + if ((state->update_index || state->set_ita) && + !is_lock_file_locked(&state->lock_file)) { if (state->index_file) hold_lock_file_for_update(&state->lock_file, state->index_file, @@ -4888,7 +4912,7 @@ int apply_all_patches(struct apply_state *state, state->whitespace_error); } - if (state->update_index) { + if (state->update_index || state->set_ita) { res = write_locked_index(&the_index, &state->lock_file, COMMIT_LOCK); if (res) { error(_("Unable to write new index file")); @@ -4941,6 +4965,8 @@ int apply_parse_options(int argc, const char **argv, N_("instead of applying the patch, see if the patch is applicable")), OPT_BOOL(0, "index", &state->check_index, N_("make sure the patch is applicable to the current index")), + OPT_BOOL('N', "intent-to-add", &state->set_ita, + N_("mark new files with `git add --intent-to-add`")), OPT_BOOL(0, "cached", &state->cached, N_("apply a patch without touching the working tree")), OPT_BOOL_F(0, "unsafe-paths", &state->unsafe_paths, diff --git a/apply.h b/apply.h index dc4a019057..94b38533a2 100644 --- a/apply.h +++ b/apply.h @@ -45,6 +45,7 @@ struct apply_state { int check; /* preimage must match working tree, don't actually apply */ int check_index; /* preimage must match the indexed version */ int update_index; /* check_index && apply */ + int set_ita; /* add intent-to-add entries to the index */ /* These control cosmetic aspect of the output */ int diffstat; /* just show a diffstat, and don't actually apply */ diff --git a/t/t2203-add-intent.sh b/t/t2203-add-intent.sh index 31bf50082f..1d640a33f0 100755 --- a/t/t2203-add-intent.sh +++ b/t/t2203-add-intent.sh @@ -246,4 +246,16 @@ test_expect_success 'diff-files/diff-cached shows ita as new/not-new files' ' test_cmp expected2 actual2 ' +test_expect_success 'apply --intent-to-add' ' + git reset --hard && + echo new >new-ita && + git add -N new-ita && + git diff >expected && + grep "new file" expected && + git reset --hard && + git apply --intent-to-add expected && + git diff >actual && + test_cmp expected actual +' + test_done -- 2.17.0.705.g3525833791