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 25d91a3 commit 9d2079cCopy full SHA for 9d2079c
src/repository.ts
@@ -160,6 +160,14 @@ export class Repository {
160
changes.push(new Resource(this.workspaceRoot, status[1], "conflict"));
161
break;
162
case "?":
163
+ let matches = status[1].match(/(.*)\.(mine|r\w+)$/);
164
+ if (
165
+ matches &&
166
+ matches[1] &&
167
+ statuses.some(s => s[1] === matches[1])
168
+ ) {
169
+ break;
170
+ }
171
notTracked.push(
172
new Resource(this.workspaceRoot, status[1], "unversioned")
173
);
0 commit comments