make bisect work (initial commit)
[TortoiseGit.git] / src / TortoiseProc / Commands / StashCommand.cpp
blob51f29b48be678e76749ad12ac7c0d86e02c95779
1 // TortoiseGit - a Windows shell extension for easy version control
3 // Copyright (C) 2008-2009 - 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 "StashCommand.h"
22 #include "MessageBox.h"
23 #include "RenameDlg.h"
24 #include "InputLogDlg.h"
25 #include "Git.h"
26 #include "DirFileEnum.h"
27 #include "ShellUpdater.h"
29 #include "AppUtils.h"
31 bool StashSaveCommand::Execute()
33 bool bRet = false;
35 CString cmd,out;
36 cmd=_T("git.exe stash");
38 if(g_Git.Run(cmd,&out,CP_ACP))
40 CMessageBox::Show(NULL,CString(_T("<ct=0x0000FF>Stash Fail!!!</ct>\n"))+out,_T("TortoiseGit"),MB_OK|MB_ICONERROR);
42 else
44 CMessageBox::Show(NULL,CString(_T("<ct=0xff0000>Stash Success</ct>\n"))+out,_T("TortoiseGit"),MB_OK|MB_ICONINFORMATION);
45 bRet = true;
47 return bRet;
51 bool StashApplyCommand::Execute()
53 if(CAppUtils::StashApply(_T("")))
54 return false;
55 return true;
59 bool StashPopCommand::Execute()
61 if(CAppUtils::StashPop())
62 return false;
63 return true;