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 "RevertCommand.h"
22 #include "RevertDlg.h"
23 //#include "SVNProgressDlg.h"
24 #include "MessageBox.h"
26 bool RevertCommand::Execute()
29 dlg
.m_pathList
= pathList
;
30 if (dlg
.DoModal() == IDOK
)
33 if (dlg
.m_selectedPathList
.GetCount() == 0)
37 for(int i
=0;i
< dlg
.m_selectedPathList
.GetCount() ;i
++)
39 cmd
.Format(_T("git.exe checkout -f -- \"%s\""),dlg
.m_selectedPathList
[i
].GetGitPathString());
40 if(g_Git
.Run(cmd
,&out
,CP_ACP
))
42 CMessageBox::Show(NULL
,out
,_T("TortoiseGit"),MB_OK
);
46 CSVNProgressDlg progDlg
;
47 theApp
.m_pMainWnd
= &progDlg
;
48 progDlg
.SetCommand(CSVNProgressDlg::SVNProgress_Revert
);
49 if (parser
.HasVal(_T("closeonend")))
50 progDlg
.SetAutoClose(parser
.GetLongVal(_T("closeonend")));
51 progDlg
.SetOptions(dlg
.m_bRecursive
? ProgOptRecursive
: ProgOptNonRecursive
);
52 progDlg
.SetPathList(dlg
.m_pathList
);
53 progDlg
.SetItemCount(dlg
.m_selectedPathList
.GetCount());
54 progDlg
.SetSelectedList(dlg
.m_selectedPathList
);