Skip to content

Commit

Permalink
Merge branch 'main' into fix-show-only-changed
Browse files Browse the repository at this point in the history
  • Loading branch information
mattseddon committed Aug 8, 2023
2 parents cacb4f0 + b7a6c51 commit f8fe473
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion extension/src/repository/model/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,9 @@ export class RepositoryModel extends Disposable {
),
untracked: [...untracked]
.filter(
path => extname(path) !== DOT_DVC && basename(path) !== '.gitignore'
path =>
extname(path) !== DOT_DVC &&
!['.gitignore', 'dvc.yaml', 'dvc.lock'].includes(basename(path))
)
.map(path => ({
contextValue: SourceControlDataStatus.UNTRACKED,
Expand Down

0 comments on commit f8fe473

Please sign in to comment.