refatored CreateRepoCommand
[TortoiseGit.git] / src / TortoiseProc / Commands / CreateRepositoryCommand.cpp
blob48ebc78fd3e3e4b29b713e7efef264e2205dbf53
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 CGit git;
35 git.m_CurrentDir = this->orgCmdLinePath.GetWinPath();
36 CString output;
37 int ret;
39 if (dlg.m_bBare)
40 ret = git.Run(_T("git.exe init-db --bare"), &output, CP_UTF8);
41 else
42 ret = git.Run(_T("git.exe init-db"), &output, CP_UTF8);
44 if (output.IsEmpty()) output = _T("git.Run() had no output");
46 if (ret)
48 CMessageBox::Show(hwndExplorer, output, _T("TortoiseGit"), MB_ICONERROR);
49 return false;
51 else
53 CMessageBox::Show(hwndExplorer, output, _T("TortoiseGit"), MB_OK | MB_ICONINFORMATION);
55 return true;
57 return false;