some spaces-tabs code cleanup
[TortoiseGit.git] / src / TortoiseProc / Commands / SVNIgnoreCommand.cpp
blobc5d23e8addd8389bf1290b90cfbf2ee486f00159
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.
19 #include "StdAfx.h"
20 #include "SVNIgnoreCommand.h"
22 #include "SysProgressDlg.h"
23 #include "ProgressDlg.h"
24 #include "MessageBox.h"
25 #include "RenameDlg.h"
26 #include "Git.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)
40 case 0:
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");
45 break;
46 case 1:
47 progress.m_GitCmd=_T("git.exe svn create-ignore");
48 break;
49 default:
50 CMessageBox::Show(NULL,_T("Unkown SVN Ignore Type"),_T("TortoiseGit"),MB_OK|MB_ICONERROR);
51 return FALSE;
56 if(progress.DoModal()==IDOK)
58 if( dlg.m_SVNIgnoreType == 0 )
62 return progress.m_GitStatus == 0;
64 return false;