From: Frank Li Date: Mon, 29 Jun 2009 08:26:31 +0000 (+0800) Subject: Fix stash problem when svn dcommit at dirty working space X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=2baf4c60077d8249d9bca8d7792cc11d79e232c1;p=tortoisegit%2FTortoiseGitJp.git Fix stash problem when svn dcommit at dirty working space Signed-off-by: Frank Li --- diff --git a/src/TortoiseProc/Commands/SVNDCommitCommand.cpp b/src/TortoiseProc/Commands/SVNDCommitCommand.cpp index 2179884..5997087 100644 --- a/src/TortoiseProc/Commands/SVNDCommitCommand.cpp +++ b/src/TortoiseProc/Commands/SVNDCommitCommand.cpp @@ -34,7 +34,7 @@ bool SVNDCommitCommand::Execute() if(CMessageBox::Show(NULL, IDS_ERROR_NOCLEAN_STASH,IDS_APPNAME,MB_YESNO|MB_ICONINFORMATION)==IDYES) { CString cmd,out; - cmd=_T("git.exe stash apply "); + cmd=_T("git.exe stash"); if(g_Git.Run(cmd,&out,CP_ACP)) { CMessageBox::Show(NULL,out,_T("TortoiseGit"),MB_OK);