checkout.c: unstage empty deleted ita files
commitecd72042de7d79c05d8f153e288766c7f88f0b10
authorVarun Naik <vcnaik94@gmail.com>
Fri, 2 Aug 2019 16:28:52 +0000 (2 09:28 -0700)
committerJunio C Hamano <gitster@pobox.com>
Fri, 2 Aug 2019 17:28:10 +0000 (2 10:28 -0700)
tree3236d9ee05eb72644b922cce1a9e50f58cc15f69
parent51cf315870bbb7254ddf06c84fe03b41bc48eebd
checkout.c: unstage empty deleted ita files

It is possible to delete a committed file from the index and then add it
as intent-to-add. After `git checkout HEAD <pathspec>`, the file should
be identical in the index and HEAD. The command already works correctly
if the file has contents in HEAD. This patch provides the desired
behavior even when the file is empty in HEAD.

`git checkout HEAD <pathspec>` calls tree.c:read_tree_1(), with fn
pointing to checkout.c:update_some(). update_some() creates a new cache
entry but discards it when its mode and oid match those of the old
entry. A cache entry for an ita file and a cache entry for an empty file
have the same oid. Therefore, an empty deleted ita file previously
passed both of these checks, and the new entry was discarded, so the
file remained unchanged in the index. After this fix, if the file is
marked as ita in the cache, then we avoid discarding the new entry and
add the new entry to the cache instead.

This change should not affect newly added ita files. For those, inside
tree.c:read_tree_1(), tree_entry_interesting() returns
entry_not_interesting, so fn is never called.

Helped-by: Jeff King <peff@peff.net>
Signed-off-by: Varun Naik <vcnaik94@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
builtin/checkout.c
t/t2022-checkout-paths.sh