Skip to content
Snippets Groups Projects
Commit 25a546e3 authored by Friedemann Kleint's avatar Friedemann Kleint
Browse files

Git:: Prompt before doing hard reset.

parent 4abe4d18
No related branches found
No related tags found
No related merge requests found
......@@ -524,9 +524,17 @@ void GitPlugin::undoFileChanges()
void GitPlugin::undoProjectChanges()
{
QString workingDirectory = getWorkingDirectory();
const QString workingDirectory = getWorkingDirectory();
if (workingDirectory.isEmpty())
return;
const QMessageBox::StandardButton answer
= QMessageBox::question(m_core->mainWindow(),
tr("Revert"),
tr("Would you like to revert all pending changes to the project?"),
QMessageBox::Yes|QMessageBox::No,
QMessageBox::No);
if (answer == QMessageBox::No)
return;
m_gitClient->hardReset(workingDirectory, QString());
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment