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 "PullCommand.h"
22 //#include "SVNProgressDlg.h"
23 #include "StringUtils.h"
25 #include "MessageBox.h"
26 #include "PullFetchDlg.h"
27 #include "ProgressDlg.h"
29 bool PullCommand::Execute()
33 if(dlg
.DoModal()==IDOK
)
38 cmd
.Format(_T("git.exe pull \"%s\" %s"),url
,dlg
.m_RemoteBranchName
);
39 CProgressDlg progress
;
40 progress
.m_GitCmd
=cmd
;
41 if(progress
.DoModal()==IDOK
)
46 dlg
.m_Directory
=this->orgCmdLinePath
.GetWinPathString();
47 if(dlg
.DoModal()==IDOK
)
49 CString dir
=dlg
.m_Directory
;
50 CString url
=dlg
.m_URL
;
52 cmd
.Format(_T("git.exe clone %s %s"),
55 CProgressDlg progress
;
56 progress
.m_GitCmd
=cmd
;
57 if(progress
.DoModal()==IDOK
)