Clean Git repos during discard

main
Michael Stucki 4 years ago committed by Jordi Boggiano
parent fb7fc4a4ca
commit 0278e7453d
No known key found for this signature in database
GPG Key ID: 7BBD42C429EC80BC

@ -451,7 +451,7 @@ class GitDownloader extends VcsDownloader implements DvcsDownloaderInterface
protected function discardChanges($path)
{
$path = $this->normalizePath($path);
if (0 !== $this->process->execute('git reset --hard', $output, $path)) {
if (0 !== $this->process->execute('git clean -df && git reset --hard', $output, $path)) {
throw new \RuntimeException("Could not reset changes\n\n:".$this->process->getErrorOutput());
}

Loading…
Cancel
Save