Do not use GitAdminDir objects
[TortoiseGit.git] / src / TortoiseProc / Commands / SVNIgnoreCommand.cpp
blob50be7a1d514d2ffafbaa08a3308aa5c7c9044091
1 // TortoiseGit - a Windows shell extension for easy version control
3 // Copyright (C) 2007-2008,2012,2014-2015 - 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:
41 progress.m_GitCmd = _T("git.exe svn show-ignore");
42 CString dotGitPath;
43 GitAdminDir::GetAdminDirPath(g_Git.m_CurrentDir, dotGitPath);
44 progress.m_LogFile = dotGitPath + _T("info\\exclude");
45 progress.m_bShowCommand = false;
46 progress.m_PreText = _T("git.exe svn show-ignore > ") + progress.m_LogFile;
48 break;
49 case 1:
50 progress.m_GitCmd=_T("git.exe svn create-ignore");
51 break;
52 default:
53 CMessageBox::Show(NULL,_T("Unkown SVN Ignore Type"),_T("TortoiseGit"),MB_OK|MB_ICONERROR);
54 return FALSE;
57 if (progress.DoModal() == IDOK)
59 ::DeleteFile(g_Git.m_CurrentDir + _T("\\sys$command"));
60 return progress.m_GitStatus == 0;
63 ::DeleteFile(g_Git.m_CurrentDir + _T("\\sys$command"));
64 return false;