Moved some more strings to resources
[TortoiseGit.git] / src / TortoiseProc / Commands / SVNRebaseCommand.cpp
blobdedd0702d615a10f2dc7697ded841633aaadf432
1 // TortoiseGit - a Windows shell extension for easy version control
3 // Copyright (C) 2009-2012 - 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 "SVNRebaseCommand.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 "rebasedlg.h"
30 bool SVNRebaseCommand::Execute()
32 bool isStash = false;
34 if(!g_Git.CheckCleanWorkTree())
36 if(CMessageBox::Show(NULL, IDS_ERROR_NOCLEAN_STASH,IDS_APPNAME,MB_YESNO|MB_ICONINFORMATION)==IDYES)
38 CString cmd,out;
39 cmd=_T("git.exe stash");
40 if (g_Git.Run(cmd, &out, CP_UTF8))
42 CMessageBox::Show(NULL,out,_T("TortoiseGit"),MB_OK);
43 return false;
45 isStash = true;
47 else
49 return false;
53 CRebaseDlg dlg;
55 // dlg.m_PreCmd=_T("git.exe svn fetch");
57 CString cmd, out, err;
58 cmd = _T("git.exe config svn-remote.svn.fetch");
60 if (!g_Git.Run(cmd, &out, &err, CP_UTF8))
62 int start = out.Find(_T(':'));
63 if( start >=0 )
64 out=out.Mid(start);
66 if(out.Left(5) == _T(":refs"))
67 out=out.Mid(6);
69 start = 0;
70 out=out.Tokenize(_T("\n"),start);
72 else
74 CMessageBox::Show(NULL, out + L"\n" + err, _T("TortoiseGit"), MB_OK|MB_ICONERROR);
75 return false;
78 dlg.m_Upstream=out;
80 CGitHash UpStreamOldHash,HeadHash,UpStreamNewHash;
81 UpStreamOldHash=g_Git.GetHash(out);
82 HeadHash = g_Git.GetHash(_T("HEAD"));
83 CProgressDlg progress;
84 progress.m_GitCmd=_T("git.exe svn fetch");
85 progress.m_bAutoCloseOnSuccess = true;
87 if(progress.DoModal()!=IDOK)
88 return false;
90 if(progress.m_GitStatus)
91 return false;
93 UpStreamNewHash=g_Git.GetHash(out);
95 //everything updated
96 if(UpStreamNewHash==HeadHash)
98 CMessageBox::Show(NULL, IDS_PROC_EVERYTHINGUPDATED, IDS_APPNAME, MB_OK);
99 if(isStash)
100 askIfUserWantsToStashPop();
102 return true;
105 //fast forward;
106 if(g_Git.IsFastForward(CString(_T("HEAD")),out))
108 CProgressDlg progressReset;
109 cmd.Format(_T("git.exe reset --hard %s"), out);
110 progressReset.m_GitCmd = cmd;
111 progressReset.m_bAutoCloseOnSuccess = true;
113 if (progressReset.DoModal() != IDOK)
114 return false;
115 else
117 MessageBox(NULL, CString(MAKEINTRESOURCE(IDS_PROC_FASTFORWARD)) + _T(":\n") + progressReset.m_LogText, _T("TortoiseGit"), MB_OK);
118 if(isStash)
119 askIfUserWantsToStashPop();
121 return true;
125 //need rebase
126 if(dlg.DoModal() == IDOK)
128 if(isStash)
129 askIfUserWantsToStashPop();
130 return true;
132 return false;
135 void SVNRebaseCommand::askIfUserWantsToStashPop()
137 if(CMessageBox::Show(NULL, IDS_DCOMMIT_STASH_POP, IDS_APPNAME, MB_YESNO|MB_ICONINFORMATION) == IDYES)
139 CString cmd,out;
140 cmd=_T("git.exe stash pop");
141 if (g_Git.Run(cmd, &out, CP_UTF8))
143 CMessageBox::Show(NULL,out,_T("TortoiseGit"), MB_OK);