Use processdlg to format patch.
[TortoiseGit.git] / src / TortoiseProc / Commands / PushCommand.cpp
blobacd7e12c71c68c62637605ee6f301a7ad9603938
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 "PushCommand.h"
22 //#include "SVNProgressDlg.h"
23 #include "StringUtils.h"
24 #include "Hooks.h"
25 #include "MessageBox.h"
27 #include "PushDlg.h"
28 #include "ProgressDlg.h"
29 #include "AppUtils.h"
31 bool PushCommand::Execute()
33 CPushDlg dlg;
34 // dlg.m_Directory=this->orgCmdLinePath.GetWinPathString();
35 if(dlg.DoModal()==IDOK)
37 // CString dir=dlg.m_Directory;
38 // CString url=dlg.m_URL;
39 CString cmd;
40 CString force;
41 CString tags;
42 CString thin;
44 if(dlg.m_bAutoLoad)
46 CAppUtils::LaunchPAgent(NULL,&dlg.m_URL);
49 if(dlg.m_bPack)
50 thin=_T("--thin");
51 if(dlg.m_bTags)
52 tags=_T("--tags");
53 if(dlg.m_bForce)
54 force=_T("--force");
56 cmd.Format(_T("git.exe push %s %s %s \"%s\" %s"),
57 thin,tags,force,
58 dlg.m_URL,
59 dlg.m_BranchSourceName);
60 if (!dlg.m_BranchRemoteName.IsEmpty())
62 cmd += _T(":") + dlg.m_BranchRemoteName;
65 CProgressDlg progress;
66 progress.m_GitCmd=cmd;
67 if(progress.DoModal()==IDOK)
68 return TRUE;
71 return FALSE;