libgit2: Enable fetch function
[TortoiseGit.git] / src / TortoiseProc / Commands / CommitCommand.cpp
blob16cb4407695f7f56a974e9ea32b14bb3f5cb3193
1 // TortoiseGit - a Windows shell extension for easy version control
3 // Copyright (C) 2008-2012 - 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));
54 #if 0
55 DWORD exitcode = 0;
56 CString error;
57 if (CHooks::Instance().StartCommit(pathList, sLogMsg, exitcode, error))
59 if (exitcode)
61 CString temp;
62 temp.Format(IDS_ERR_HOOKFAILED, (LPCTSTR)error);
63 CMessageBox::Show(hwndExplorer, temp, _T("TortoiseGit"), MB_ICONERROR);
64 return false;
67 #endif
69 if (!GitAdminDir().HasAdminDir(g_Git.m_CurrentDir)) {
70 CMessageBox::Show(hwndExplorer, IDS_NOWORKINGCOPY, IDS_APPNAME, MB_ICONERROR);
71 return false;
74 bool autoClose = false;
75 if (parser.HasVal(_T("closeonend")))
76 autoClose = !!parser.GetLongVal(_T("closeonend"));
78 return !!CAppUtils::Commit( parser.GetVal(_T("bugid")),
79 parser.HasKey(_T("wholeproject")),
80 sLogMsg,
81 pathList,
82 selectedList,
83 bSelectFilesForCommit,
84 autoClose);