Skip to content
This repository was archived by the owner on Sep 11, 2020. It is now read-only.

Commit bf0d56e

Browse files
committed
worktree: enable manual ignore patterns when no .gitignore is available
Signed-off-by: Fabian Sabau <[email protected]>
1 parent af1e381 commit bf0d56e

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

worktree_status.go

+5-1
Original file line numberDiff line numberDiff line change
@@ -142,12 +142,16 @@ func (w *Worktree) diffStagingWithWorktree(reverse bool) (merkletrie.Changes, er
142142

143143
func (w *Worktree) excludeIgnoredChanges(changes merkletrie.Changes) merkletrie.Changes {
144144
patterns, err := gitignore.ReadPatterns(w.Filesystem, nil)
145-
if err != nil || len(patterns) == 0 {
145+
if err != nil {
146146
return changes
147147
}
148148

149149
patterns = append(patterns, w.Excludes...)
150150

151+
if len(patterns) == 0 {
152+
return changes
153+
}
154+
151155
m := gitignore.NewMatcher(patterns)
152156

153157
var res merkletrie.Changes

0 commit comments

Comments
 (0)