forked from qt-creator/qt-creator
Git: Enable --no-verify for commit
Change-Id: I88cfb7839b41467e3f6b25bea329eb15765e440e Reviewed-by: Tobias Hunger <tobias.hunger@nokia.com>
This commit is contained in:
committed by
Tobias Hunger
parent
63f0c0a62f
commit
6a3f9460d7
@@ -58,6 +58,7 @@ void GitSubmitEditorPanelData::clear()
|
||||
{
|
||||
author.clear();
|
||||
email.clear();
|
||||
bypassHooks = false;
|
||||
}
|
||||
|
||||
QString GitSubmitEditorPanelData::authorString() const
|
||||
@@ -76,7 +77,8 @@ QString GitSubmitEditorPanelData::authorString() const
|
||||
|
||||
QDebug operator<<(QDebug d, const GitSubmitEditorPanelData &data)
|
||||
{
|
||||
d.nospace() << " author:" << data.author << " email: " << data.email;
|
||||
d.nospace() << " author:" << data.author << " email: " << data.email
|
||||
<< " bypass hooks: " << data.bypassHooks;
|
||||
return d;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user