Skip to content

Commit e0cf0d7

Browse files
pcloudsgitster
authored andcommitted
read-cache: mark new entries for split index
Make sure entry addition does not lead to unifying the index. We don't need to explicitly keep track of new entries. If ce->index is zero, they're new. Otherwise it's unlikely that they are new, but we'll do a thorough check later at writing time. Signed-off-by: Nguyễn Thái Ngọc Duy <pclouds@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent 5fc2fc8 commit e0cf0d7

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

read-cache.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,8 @@ static struct cache_entry *refresh_cache_entry(struct cache_entry *ce,
3838
#define CACHE_EXT_LINK 0x6c696e6b /* "link" */
3939

4040
/* changes that can be kept in $GIT_DIR/index (basically all extensions) */
41-
#define EXTMASK (RESOLVE_UNDO_CHANGED | CACHE_TREE_CHANGED)
41+
#define EXTMASK (RESOLVE_UNDO_CHANGED | CACHE_TREE_CHANGED | \
42+
CE_ENTRY_ADDED)
4243

4344
struct index_state the_index;
4445
static const char *alternate_index_output;

0 commit comments

Comments
 (0)