Add start and pre commit hooks
[TortoiseGit.git] / src / TortoiseProc / Commands / CommitCommand.cpp
blobefc8e9ce2fd62454a854e6948a698fd6036829c7
1 // TortoiseGit - a Windows shell extension for easy version control
3 // Copyright (C) 2008-2013 - TortoiseGit
4 // Copyright (C) 2007-2008 - TortoiseSVN
6 // This program is free software; you can redistribute it and/or
7 // modify it under the terms of the GNU General Public License
8 // as published by the Free Software Foundation; either version 2
9 // of the License, or (at your option) any later version.
11 // This program is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 // GNU General Public License for more details.
16 // You should have received a copy of the GNU General Public License
17 // along with this program; if not, write to the Free Software Foundation,
18 // 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
20 #include "stdafx.h"
21 #include "CommitCommand.h"
22 #include "CommitDlg.h"
23 //#include "SVNProgressDlg.h"
24 #include "StringUtils.h"
25 #include "Hooks.h"
26 #include "MessageBox.h"
27 #include "AppUtils.h"
29 CString CommitCommand::LoadLogMessage()
31 CString msg;
32 if (parser.HasKey(_T("logmsg")))
34 msg = parser.GetVal(_T("logmsg"));
36 if (parser.HasKey(_T("logmsgfile")))
38 CString logmsgfile = parser.GetVal(_T("logmsgfile"));
39 CStringUtils::ReadStringFromTextFile(logmsgfile, msg);
41 return msg;
44 bool CommitCommand::Execute()
46 CTGitPathList selectedList;
47 if (parser.HasKey(_T("logmsg")) && (parser.HasKey(_T("logmsgfile"))))
49 CMessageBox::Show(hwndExplorer, IDS_ERR_TWOLOGPARAMS, IDS_APPNAME, MB_ICONERROR);
50 return false;
52 CString sLogMsg = LoadLogMessage();
53 bool bSelectFilesForCommit = !!DWORD(CRegStdDWORD(_T("Software\\TortoiseGit\\SelectFilesForCommit"), TRUE));
55 if (!GitAdminDir().HasAdminDir(g_Git.m_CurrentDir)) {
56 CMessageBox::Show(hwndExplorer, IDS_NOWORKINGCOPY, IDS_APPNAME, MB_ICONERROR);
57 return false;
60 return !!CAppUtils::Commit( parser.GetVal(_T("bugid")),
61 parser.HasKey(_T("wholeproject")),
62 sLogMsg,
63 pathList,
64 selectedList,
65 bSelectFilesForCommit);