1 // TortoiseGit - a Windows shell extension for easy version control
3 // Copyright (C) 2007-2008 - TortoiseGit
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 "SVNIgnoreCommand.h"
22 #include "SysProgressDlg.h"
23 #include "ProgressDlg.h"
24 #include "MessageBox.h"
25 #include "RenameDlg.h"
27 #include "ShellUpdater.h"
28 #include "CommonResource.h"
29 #include "SVNIgnoreTypeDlg.h"
31 bool SVNIgnoreCommand::Execute()
33 CSVNIgnoreTypeDlg dlg
;
34 CProgressDlg progress
;
36 if( dlg
.DoModal() == IDOK
)
38 switch (dlg
.m_SVNIgnoreType
)
41 progress
.m_GitCmd
=_T("git.exe svn show-ignore");
42 progress
.m_LogFile
=g_Git
.m_CurrentDir
+_T("\\.git\\info\\exclude");
43 progress
.m_bShowCommand
=false;
44 progress
.m_PreText
=_T("git.exe svn show-ignore > .git\\info\\exclude");
47 progress
.m_GitCmd
=_T("git.exe svn create-ignore");
50 CMessageBox::Show(NULL
,_T("Unkown SVN Ignore Type"),_T("TortoiseGit"),MB_OK
|MB_ICONERROR
);
56 if(progress
.DoModal()==IDOK
)
58 if( dlg
.m_SVNIgnoreType
== 0 )
62 return progress
.m_GitStatus
== 0;