Cleanup
[TortoiseGit.git] / src / TortoiseProc / Commands / CreateRepositoryCommand.cpp
blob0346ffe8035b14b7bb89d1d4cd14c28a35d4638a
1 // TortoiseGit - a Windows shell extension for easy version control
3 // Copyright (C) 2008-2012 - TortoiseGit
5 // This program is free software; you can redistribute it and/or
6 // modify it under the terms of the GNU General Public License
7 // as published by the Free Software Foundation; either version 2
8 // of the License, or (at your option) any later version.
10 // This program is distributed in the hope that it will be useful,
11 // but WITHOUT ANY WARRANTY; without even the implied warranty of
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 // GNU General Public License for more details.
15 // You should have received a copy of the GNU General Public License
16 // along with this program; if not, write to the Free Software Foundation,
17 // 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
19 #include "StdAfx.h"
20 #include "Command.h"
21 #include "CreateRepositoryCommand.h"
22 #include "ShellUpdater.h"
23 #include "MessageBox.h"
24 #include "git.h"
26 #include "CreateRepoDlg.h"
28 bool CreateRepositoryCommand::Execute()
30 CString folder = this->orgCmdLinePath.GetWinPath();
31 CCreateRepoDlg dlg;
32 dlg.m_folder = folder;
33 if(dlg.DoModal() == IDOK)
35 CString message;
36 message.Format(IDS_WARN_GITINIT_FOLDERNOTEMPTY, folder);
37 if (!PathIsDirectoryEmpty(folder) && CMessageBox::Show(hwndExplorer, message, _T("TortoiseGit"), 1, IDI_ERROR, CString(MAKEINTRESOURCE(IDS_ABORTBUTTON)), CString(MAKEINTRESOURCE(IDS_PROCEEDBUTTON))) == 1)
39 return false;
42 CGit git;
43 git.m_CurrentDir = this->orgCmdLinePath.GetWinPath();
44 CString output;
45 int ret;
47 if (dlg.m_bBare)
48 ret = git.Run(_T("git.exe init-db --bare"), &output, CP_UTF8);
49 else
50 ret = git.Run(_T("git.exe init-db"), &output, CP_UTF8);
52 if (output.IsEmpty()) output = _T("git.Run() had no output");
54 if (ret)
56 CMessageBox::Show(hwndExplorer, output, _T("TortoiseGit"), MB_ICONERROR);
57 return false;
59 else
61 if (!dlg.m_bBare)
62 CShellUpdater::Instance().AddPathForUpdate(orgCmdLinePath);
63 CMessageBox::Show(hwndExplorer, output, _T("TortoiseGit"), MB_OK | MB_ICONINFORMATION);
65 return true;
67 return false;