diff options
Diffstat (limited to 'src/plugins/git/commitdata.cpp')
-rw-r--r-- | src/plugins/git/commitdata.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/plugins/git/commitdata.cpp b/src/plugins/git/commitdata.cpp index d17cf89d1c..129e256d9f 100644 --- a/src/plugins/git/commitdata.cpp +++ b/src/plugins/git/commitdata.cpp @@ -53,6 +53,8 @@ void GitSubmitEditorPanelData::clear() author.clear(); email.clear(); bypassHooks = false; + pushAction = CommitOnly; + hasRemotes = false; } QString GitSubmitEditorPanelData::authorString() const @@ -72,7 +74,8 @@ QString GitSubmitEditorPanelData::authorString() const QDebug operator<<(QDebug d, const GitSubmitEditorPanelData &data) { d.nospace() << " author:" << data.author << " email: " << data.email - << " bypass hooks: " << data.bypassHooks; + << " bypass hooks: " << data.bypassHooks + << " action after commit " << data.pushAction; return d; } |