diff --git a/src/plugins/git/gitclient.cpp b/src/plugins/git/gitclient.cpp index 7d41d5c5387..a5111435af5 100644 --- a/src/plugins/git/gitclient.cpp +++ b/src/plugins/git/gitclient.cpp @@ -657,11 +657,11 @@ void GitClient::stage(const QString &patch, bool revert) &errorMessage, args)) { if (errorMessage.isEmpty()) { if (revert) - VcsOutputWindow::append(tr("Chunk successfully unstaged")); + VcsOutputWindow::appendSilently(tr("Chunk successfully unstaged")); else - VcsOutputWindow::append(tr("Chunk successfully staged")); + VcsOutputWindow::appendSilently(tr("Chunk successfully staged")); } else { - VcsOutputWindow::append(errorMessage); + VcsOutputWindow::appendError(errorMessage); } m_contextController->requestReload(); } else {