We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 82628c9 commit b7a6c51Copy full SHA for b7a6c51
extension/src/repository/model/index.ts
@@ -161,7 +161,9 @@ export class RepositoryModel extends Disposable {
161
),
162
untracked: [...untracked]
163
.filter(
164
- path => extname(path) !== DOT_DVC && basename(path) !== '.gitignore'
+ path =>
165
+ extname(path) !== DOT_DVC &&
166
+ !['.gitignore', 'dvc.yaml', 'dvc.lock'].includes(basename(path))
167
)
168
.map(path => ({
169
contextValue: SourceControlDataStatus.UNTRACKED,
0 commit comments