Skip to content

Commit f9bc8b0

Browse files
committed
fix(git): gracefully handle a file in the index but not in the filesystem
This can happen if a user removes a file from the filesystem and that change hasn't been staged yet. We log a warning when this happens and continue. Signed-off-by: Brian McGee <[email protected]>
1 parent 990655f commit f9bc8b0

File tree

2 files changed

+13
-3
lines changed

2 files changed

+13
-3
lines changed

cli/format_test.go

+6-2
Original file line numberDiff line numberDiff line change
@@ -530,14 +530,18 @@ func TestGitWorktree(t *testing.T) {
530530
as.NoError(err)
531531
run(32, 32, 32, 0)
532532

533-
// remove python directory
533+
// remove python directory from the worktree
534534
as.NoError(wt.RemoveGlob("python/*"))
535535
run(28, 28, 28, 0)
536536

537+
// remove nixpkgs.toml from the filesystem but leave it in the index
538+
as.NoError(os.Remove(filepath.Join(tempDir, "nixpkgs.toml")))
539+
run(27, 27, 27, 0)
540+
537541
// walk with filesystem instead of git
538542
_, err = cmd(t, "-c", "--config-file", configPath, "--tree-root", tempDir, "--walk", "filesystem")
539543
as.NoError(err)
540-
assertStats(t, as, 61, 61, 61, 0)
544+
assertStats(t, as, 60, 60, 60, 0)
541545
}
542546

543547
func TestPathsArg(t *testing.T) {

walk/git.go

+7-1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ import (
1313
)
1414

1515
type gitWalker struct {
16+
log *log.Logger
1617
root string
1718
paths chan string
1819
repo *git.Repository
@@ -59,7 +60,11 @@ func (g gitWalker) Walk(ctx context.Context, fn WalkFunc) error {
5960
path := filepath.Join(g.root, entry.Name)
6061

6162
info, err := os.Lstat(path)
62-
if err != nil {
63+
if os.IsNotExist(err) {
64+
// the underlying file might have been removed without the change being staged yet
65+
g.log.Warnf("Path %s is in the index but appears to have been removed from the filesystem", path)
66+
continue
67+
} else if err != nil {
6368
return fmt.Errorf("failed to stat %s: %w", path, err)
6469
}
6570

@@ -136,6 +141,7 @@ func NewGit(root string, paths chan string) (Walker, error) {
136141
return nil, fmt.Errorf("failed to open git repo: %w", err)
137142
}
138143
return &gitWalker{
144+
log: log.WithPrefix("walker[git]"),
139145
root: root,
140146
paths: paths,
141147
repo: repo,

0 commit comments

Comments
 (0)