SyncDlg: Make check if local branch fast-fowards to remote branch work again
[TortoiseGit.git] / src / TortoiseProc / Commands / SVNIgnoreCommand.cpp
blob8cd408e1997d26254ff08a5a9dd40df3659d778b
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 "SVNIgnoreTypeDlg.h"
30 bool SVNIgnoreCommand::Execute()
32 CSVNIgnoreTypeDlg dlg;
33 CProgressDlg progress;
35 if( dlg.DoModal() == IDOK)
37 switch (dlg.m_SVNIgnoreType)
39 case 0:
40 progress.m_GitCmd=_T("git.exe svn show-ignore");
41 progress.m_LogFile=g_Git.m_CurrentDir+_T("\\.git\\info\\exclude");
42 progress.m_bShowCommand=false;
43 progress.m_PreText=_T("git.exe svn show-ignore > .git\\info\\exclude");
44 break;
45 case 1:
46 progress.m_GitCmd=_T("git.exe svn create-ignore");
47 break;
48 default:
49 CMessageBox::Show(NULL,_T("Unkown SVN Ignore Type"),_T("TortoiseGit"),MB_OK|MB_ICONERROR);
50 return FALSE;
55 if(progress.DoModal()==IDOK)
57 if( dlg.m_SVNIgnoreType == 0 )
61 return progress.m_GitStatus == 0;
63 return false;