Fix typos
[TortoiseGit.git] / src / TortoiseProc / Commands / IgnoreCommand.cpp
blobdecc76f170a4f436a8886c64ce24f765cbef0386
1 // TortoiseGit - a Windows shell extension for easy version control
3 // Copyright (C) 2009-2013, 2015-2016, 2018-2019 - TortoiseGit
4 // Copyright (C) 2007-2008 - TortoiseSVN
6 // This program is free software; you can redistribute it and/or
7 // modify it under the terms of the GNU General Public License
8 // as published by the Free Software Foundation; either version 2
9 // of the License, or (at your option) any later version.
11 // This program is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 // GNU General Public License for more details.
16 // You should have received a copy of the GNU General Public License
17 // along with this program; if not, write to the Free Software Foundation,
18 // 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
20 #include "stdafx.h"
21 #include "IgnoreCommand.h"
23 #include "MessageBox.h"
24 #include "AppUtils.h"
25 #include "ShellUpdater.h"
27 bool IgnoreCommand::Execute()
29 if (!GitAdminDir::HasAdminDir(g_Git.m_CurrentDir))
31 CMessageBox::Show(GetExplorerHWND(), IDS_NOWORKINGCOPY, IDS_APPNAME, MB_ICONERROR);
32 return false;
35 bool bmask=false;
37 if (parser.HasKey(L"onlymask"))
38 bmask=true;
40 bool ret = CAppUtils::IgnoreFile(GetExplorerHWND(), pathList, bmask);
41 if (!ret)
42 return false;
44 if (parser.HasKey(L"delete"))
46 CString format;
47 if(CMessageBox::Show(GetExplorerHWND(), IDS_PROC_KEEPFILELOCAL, IDS_APPNAME, MB_ICONERROR|MB_YESNO) == IDYES)
48 format = L"git.exe rm --cache -r -f -- \"%s\"";
49 else
50 format = L"git.exe rm -r -f -- \"%s\"";
52 CString output;
53 CString cmd;
54 int nPath;
55 for (nPath = 0; nPath < pathList.GetCount(); ++nPath)
57 cmd.Format(format, static_cast<LPCWSTR>(pathList[nPath].GetGitPathString()));
58 if (g_Git.Run(cmd, &output, CP_UTF8))
60 if (MessageBox(GetExplorerHWND(), output, L"TortoiseGit", MB_ICONERROR | MB_OKCANCEL) == IDCANCEL)
61 return FALSE;
65 output.Format(IDS_PROC_FILESREMOVED, nPath);
67 CShellUpdater::Instance().AddPathsForUpdate(pathList);
69 MessageBox(GetExplorerHWND(), output, L"TortoiseGit", MB_ICONINFORMATION | MB_OK);
72 CShellUpdater::Instance().AddPathsForUpdate(orgPathList);
73 CShellUpdater::Instance().Flush();
75 return ret;