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 "PushCommand.h"
22 //#include "SVNProgressDlg.h"
23 #include "StringUtils.h"
25 #include "MessageBox.h"
28 #include "ProgressDlg.h"
31 bool PushCommand::Execute()
34 // dlg.m_Directory=this->orgCmdLinePath.GetWinPathString();
35 if(dlg
.DoModal()==IDOK
)
37 // CString dir=dlg.m_Directory;
38 // CString url=dlg.m_URL;
46 CAppUtils::LaunchPAgent(NULL
,&dlg
.m_URL
);
56 cmd
.Format(_T("git.exe push %s %s %s \"%s\" %s"),
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
)