Fix broken build in last commit
[TortoiseGit.git] / src / TortoiseProc / Commands / CreateRepositoryCommand.cpp
blobbb967036dfd29479e48c62c6e1f5b09f1a784ac5
1 // TortoiseGit - a Windows shell extension for easy version control
3 // Copyright (C) 2008-2013 - 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 "git2.h"
25 #include "UnicodeUtils.h"
27 #include "CreateRepoDlg.h"
29 bool CreateRepositoryCommand::Execute()
31 CString folder = this->orgCmdLinePath.GetWinPath();
32 CCreateRepoDlg dlg;
33 dlg.m_folder = folder;
34 if(dlg.DoModal() == IDOK)
36 CString message;
37 message.Format(IDS_WARN_GITINIT_FOLDERNOTEMPTY, folder);
38 if (!PathIsDirectoryEmpty(folder) && CMessageBox::Show(hwndExplorer, message, _T("TortoiseGit"), 1, IDI_ERROR, CString(MAKEINTRESOURCE(IDS_ABORTBUTTON)), CString(MAKEINTRESOURCE(IDS_PROCEEDBUTTON))) == 1)
40 return false;
43 git_repository *repo;
44 CStringA path(CUnicodeUtils::GetMulti(folder, CP_UTF8));
45 if (git_repository_init(&repo, path.GetBuffer(), dlg.m_bBare))
47 path.ReleaseBuffer();
48 CMessageBox::Show(hwndExplorer, CGit::GetLibGit2LastErr(_T("Could not initialize a new repository.")), _T("TortoiseGit"), MB_OK | MB_ICONERROR);
49 return false;
51 path.ReleaseBuffer();
52 git_repository_free(repo);
54 if (!dlg.m_bBare)
55 CShellUpdater::Instance().AddPathForUpdate(orgCmdLinePath);
56 CString str;
57 str.Format(IDS_PROC_REPOCREATED, folder);
58 CMessageBox::Show(hwndExplorer, str, _T("TortoiseGit"), MB_OK | MB_ICONINFORMATION);
59 return true;
61 return false;