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.
21 #include "CreateRepositoryCommand.h"
22 #include "ShellUpdater.h"
23 #include "MessageBox.h"
24 #include "UnicodeUtils.h"
26 #include "CreateRepoDlg.h"
28 bool CreateRepositoryCommand::Execute()
30 CString folder
= this->orgCmdLinePath
.GetWinPath();
32 dlg
.m_folder
= folder
;
33 if(dlg
.DoModal() == IDOK
)
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)
43 CStringA
path(CUnicodeUtils::GetMulti(folder
, CP_UTF8
));
44 if (git_repository_init(&repo
, path
.GetBuffer(), dlg
.m_bBare
))
47 CMessageBox::Show(hwndExplorer
, CGit::GetLibGit2LastErr(_T("Could not initialize a new repository.")), _T("TortoiseGit"), MB_OK
| MB_ICONERROR
);
51 git_repository_free(repo
);
54 CShellUpdater::Instance().AddPathForUpdate(orgCmdLinePath
);
56 str
.Format(IDS_PROC_REPOCREATED
, folder
);
57 CMessageBox::Show(hwndExplorer
, str
, _T("TortoiseGit"), MB_OK
| MB_ICONINFORMATION
);