Skip to content

Commit 31d1fc8

Browse files
Kevin Willforddscho
authored andcommitted
sparse-checkout: avoid writing entries with the skip-worktree bit
When using the sparse-checkout feature git should not write to the working directory for files with the skip-worktree bit on. With the skip-worktree bit on the file may or may not be in the working directory and if it is not we don't want or need to create it by calling checkout_entry. There are two callers of checkout_target. Both of which check that the file does not exist before calling checkout_target. load_current which make a call to lstat right before calling checkout_target and check_preimage which will only run checkout_taret it stat_ret is less than zero. It sets stat_ret to zero and only if !stat->cached will it lstat the file and set stat_ret to something other than zero. This patch checks if skip-worktree bit is on in checkout_target and just returns so that the entry doesn't not end up in the working directory. This is so that apply will not create a file in the working directory, then update the index but not keep the working directory up to date with the changes that happened in the index. Signed-off-by: Kevin Willford <kewillf@microsoft.com>
1 parent 4528d3a commit 31d1fc8

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

apply.c

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3380,6 +3380,24 @@ static int checkout_target(struct index_state *istate,
33803380
{
33813381
struct checkout costate = CHECKOUT_INIT;
33823382

3383+
/*
3384+
* Do not checkout the entry if the skipworktree bit is set
3385+
*
3386+
* Both callers of this method (check_preimage and load_current)
3387+
* check for the existance of the file before calling this
3388+
* method so we know that the file doesn't exist at this point
3389+
* and we don't need to perform that check again here.
3390+
* We just need to check the skip-worktree and return.
3391+
*
3392+
* This is to prevent git from creating a file in the
3393+
* working directory that has the skip-worktree bit on,
3394+
* then updating the index from the patch and not keeping
3395+
* the working directory version up to date with what it
3396+
* changed the index version to be.
3397+
*/
3398+
if (ce_skip_worktree(ce))
3399+
return 0;
3400+
33833401
costate.refresh_cache = 1;
33843402
costate.istate = istate;
33853403
if (checkout_entry(ce, &costate, NULL, NULL) ||

0 commit comments

Comments
 (0)