diff options
author | Nguyễn Thái Ngọc Duy <pclouds@gmail.com> | 2018-05-26 14:08:46 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2018-05-29 05:42:30 +0200 |
commit | cff5dc09ed0d07461bf77e9abef57dc86a11ab77 (patch) | |
tree | f72684761303670cba7ad8a2d6178254ed5ef3e9 /apply.h | |
parent | t2203: add a test about "diff HEAD" case (diff) | |
download | git-cff5dc09ed0d07461bf77e9abef57dc86a11ab77.tar.xz git-cff5dc09ed0d07461bf77e9abef57dc86a11ab77.zip |
apply: add --intent-to-add
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@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'apply.h')
-rw-r--r-- | apply.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -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 ita_only; /* 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 */ |