1 // TortoiseSVN - a Windows shell extension for easy version control
3 // Copyright (C) 2007-2008 - TortoiseSVN
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.
20 #include "CloneCommand.h"
22 //#include "SVNProgressDlg.h"
23 #include "StringUtils.h"
25 #include "MessageBox.h"
28 #include "ProgressDlg.h"
31 bool CloneCommand::Execute()
34 dlg
.m_Directory
=this->orgCmdLinePath
.GetWinPathString();
35 if(dlg
.DoModal()==IDOK
)
37 if(dlg
.m_bAutoloadPuttyKeyFile
)
39 CAppUtils::LaunchPAgent(&dlg
.m_strPuttyKeyFile
);
41 CString dir
=dlg
.m_Directory
;
42 CString url
=dlg
.m_URL
;
43 // is this a windows format UNC path, ie starts with \\
44 if (url
.Find(_T("\\\\")) == 0)
46 // yes, change all \ to /
47 // this should not be necessary but msysgit does not support the use \ here yet
48 url
.Replace( _T('\\'), _T('/'));
51 cmd
.Format(_T("git.exe clone -v \"%s\" \"%s\""),
54 CProgressDlg progress
;
55 progress
.m_GitCmd
=cmd
;
56 if(progress
.DoModal()==IDOK
)