Use processdlg to format patch.
[TortoiseGit.git] / src / TortoiseProc / Commands / SubmoduleCommand.cpp
blobca1ea082dd50181eeb1a681d1f7de76f770f9ebf
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 "SubmoduleCommand.h"
21 #include "commonresource.h"
23 #include "MessageBox.h"
24 #include "RenameDlg.h"
25 #include "InputLogDlg.h"
26 #include "Git.h"
27 #include "DirFileEnum.h"
28 #include "ShellUpdater.h"
29 #include "SubmoduleAddDlg.h"
30 #include "ProgressDlg.h"
32 bool SubmoduleAddCommand::Execute()
34 bool bRet = false;
35 CSubmoduleAddDlg dlg;
36 dlg.m_strPath = cmdLinePath.GetDirectory().GetWinPathString();
37 dlg.m_strProject = g_Git.m_CurrentDir;
38 if( dlg.DoModal() == IDOK )
40 CString cmd;
41 if(dlg.m_strPath.Left(g_Git.m_CurrentDir.GetLength()) == g_Git.m_CurrentDir)
42 dlg.m_strPath = dlg.m_strPath.Right(dlg.m_strPath.GetLength()-g_Git.m_CurrentDir.GetLength()-1);
44 CString branch;
45 if(dlg.m_bBranch)
46 branch.Format(_T(" -b %s "), dlg.m_strBranch);
48 dlg.m_strPath.Replace(_T('\\'),_T('/'));
49 dlg.m_strRepos.Replace(_T('\\'),_T('/'));
51 cmd.Format(_T("git.exe submodule add %s -- \"%s\" \"%s\""),
52 branch,
53 dlg.m_strRepos, dlg.m_strPath);
55 CProgressDlg progress;
56 progress.m_GitCmd=cmd;
57 progress.DoModal();
59 bRet = TRUE;
61 return bRet;
64 bool SubmoduleCommand::Execute(CString cmd, CString arg)
66 bool bRet = false;
67 CProgressDlg progress;
68 CString bkpath;
70 if(parser.HasKey(_T("bkpath")))
72 bkpath=parser.GetVal(_T("bkpath"));
74 else
76 bkpath=this->orgPathList[0].GetWinPathString();
77 bkpath=bkpath.Left(bkpath.ReverseFind(_T('\\')));
80 CString super=g_GitAdminDir.GetSuperProjectRoot( bkpath );
81 if(super.IsEmpty())
83 CMessageBox::Show(NULL,IDS_ERR_NOTFOUND_SUPER_PRJECT,IDS_APPNAME,MB_OK|MB_ICONERROR);
84 //change current project root to super project
85 return false;
88 g_Git.m_CurrentDir=super;
90 progress.m_Title.Format(_T("Submodule %s - %s"),cmd,super);
92 //progress.m_GitCmd.Format(_T("git.exe submodule update --init "));
94 CString str;
95 for(int i=0;i<this->orgPathList.GetCount();i++)
97 if(orgPathList[i].IsDirectory())
99 str.Format(_T("git.exe submodule %s %s \"%s\""),cmd,arg, ((CTGitPath &)orgPathList[i]).GetSubPath(CTGitPath(super)).GetGitPathString());
100 progress.m_GitCmdList.push_back(str);
104 progress.DoModal();
106 return !progress.m_GitStatus;