make bisect work (initial commit)
[TortoiseGit.git] / src / TortoiseProc / Commands / CreateRepositoryCommand.cpp
blob5f551ecfc641a0e883a2d4d8de64f079b156516f
1 // TortoiseGit - a Windows shell extension for easy version control
3 // Copyright (C) 2008-2011 - 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"
23 #include "MessageBox.h"
24 #include "CommonResource.h"
25 #include "git.h"
27 #include "CreateRepoDlg.h"
29 bool CreateRepositoryCommand::Execute()
31 CCreateRepoDlg dlg;
32 if(dlg.DoModal() == IDOK)
34 CString folder, message;
35 folder = this->orgCmdLinePath.GetWinPath();
36 message = _T("The folder\"") + folder + _T("\" is not empty. Proceeding might cause loss of data.");
37 if (!PathIsDirectoryEmpty(folder) && CMessageBox::Show(hwndExplorer, message, _T("TortoiseGit"), 1, IDI_ERROR, _T("A&bort"), _T("&Proceed")) == 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 CMessageBox::Show(hwndExplorer, output, _T("TortoiseGit"), MB_OK | MB_ICONINFORMATION);
63 return true;
65 return false;