Skip to content

Commit

Permalink
merge-recursive: teach was_dirty() about the virtualfilesystem
Browse files Browse the repository at this point in the history
The idea of the virtual file system really is to tell Git to avoid
accessing certain paths. This fixes the case where a given path is not
yet included in the virtual file system and we are about to write a
conflicted version of it.
  • Loading branch information
dscho committed Feb 10, 2025
1 parent d1af813 commit 6ca188e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion merge-recursive.c
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@

#include "git-compat-util.h"
#include "merge-recursive.h"
#include "virtualfilesystem.h"

#include "alloc.h"
#include "cache-tree.h"
Expand Down Expand Up @@ -876,7 +877,8 @@ static int was_dirty(struct merge_options *opt, const char *path)
{
struct cache_entry *ce;

if (opt->priv->call_depth || !was_tracked(opt, path))
if (opt->priv->call_depth || !was_tracked(opt, path) ||
is_excluded_from_virtualfilesystem(path, strlen(path), DT_REG) == 1)
return 0;

ce = index_file_exists(opt->priv->unpack_opts.src_index,
Expand Down

0 comments on commit 6ca188e

Please sign in to comment.