0
1
Fork 0

Compare commits

...

2 Commits

1 changed files with 1 additions and 1 deletions

View File

@ -480,7 +480,7 @@ class GitCommandManager {
}
async tryReset(): Promise<boolean> {
const output = await this.execGit(['reset', '--hard', 'HEAD'], true)
const output = await this.execGit(['reset', '--hard', 'HEAD', '--'], true)
return output.exitCode === 0
}