Use processdlg to format patch.
[TortoiseGit.git] / src / TortoiseProc / Commands / PullCommand.cpp
blob52b69961ea62ad7fb0a07352ee5f27f478ae8ea4
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.
19 #include "StdAfx.h"
20 #include "PullCommand.h"
22 //#include "SVNProgressDlg.h"
23 #include "StringUtils.h"
24 #include "Hooks.h"
25 #include "MessageBox.h"
26 #include "PullFetchDlg.h"
27 #include "ProgressDlg.h"
29 bool PullCommand::Execute()
31 CPullFetchDlg dlg;
32 dlg.m_IsPull=TRUE;
33 if(dlg.DoModal()==IDOK)
35 CString url;
36 url=dlg.m_RemoteURL;
37 CString cmd;
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)
42 return TRUE;
44 #if 0
45 CCloneDlg dlg;
46 dlg.m_Directory=this->orgCmdLinePath.GetWinPathString();
47 if(dlg.DoModal()==IDOK)
49 CString dir=dlg.m_Directory;
50 CString url=dlg.m_URL;
51 CString cmd;
52 cmd.Format(_T("git.exe clone %s %s"),
53 url,
54 dir);
55 CProgressDlg progress;
56 progress.m_GitCmd=cmd;
57 if(progress.DoModal()==IDOK)
58 return TRUE;
61 #endif
62 return FALSE;