]> git.ipfire.org Git - thirdparty/git.git/commit - git-add--interactive.perl
add -p: calculate offset delta for edited patches
authorPhillip Wood <phillip.wood@dunelm.org.uk>
Mon, 5 Mar 2018 10:56:28 +0000 (10:56 +0000)
committerJunio C Hamano <gitster@pobox.com>
Mon, 5 Mar 2018 18:45:41 +0000 (10:45 -0800)
commit2b8ea7f3c7d8dfd4f1eddaef6688b51f8106767e
tree8e00fb99ceb854c1f89a13372c6718e64cf41e5e
parentfecc6f3a6862c55dee0e9a2390acaf4b23991fef
add -p: calculate offset delta for edited patches

Recount the number of preimage and postimage lines in a hunk after it
has been edited so any change in the number of insertions or deletions
can be used to adjust the offsets of subsequent hunks. If an edited
hunk is subsequently split then the offset correction will be lost. It
would be possible to fix this if it is a problem, however the code
here is still an improvement on the status quo for the common case
where an edited hunk is applied without being split.

This is also a necessary step to removing '--recount' and
'--allow-overlap' from the invocation of 'git apply'. Before
'--recount' can be removed the splitting and coalescing counting needs
to be fixed to handle a missing newline at the end of a file. In order
to remove '--allow-overlap' there needs to be i) some way of verifying
the offset data in the edited hunk (probably by correlating the
preimage (or postimage if the patch is going to be applied in reverse)
lines of the edited and unedited versions to see if they are offset or
if any leading/trailing context lines have been removed) and ii) a way of
dealing with edited hunks that change context lines that are shared
with neighbouring hunks.

Signed-off-by: Phillip Wood <phillip.wood@dunelm.org.uk>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
git-add--interactive.perl
t/t3701-add-interactive.sh