| 305 | } |
| 306 | |
| 307 | CTGitPath CHooks::AddMessageFileParam(CString& sCmd, const CString& message) |
| 308 | { |
| 309 | CTGitPath tempPath; |
| 310 | tempPath = CTempFiles::Instance().GetTempFilePath(true); |
| 311 | CStringUtils::WriteStringToTextFile(tempPath.GetWinPath(), message); |
| 312 | AddParam(sCmd, tempPath.GetWinPathString()); |
| 313 | return tempPath; |
| 314 | } |
| 315 | |
| 316 | bool CHooks::StartCommit(HWND hWnd, const CString& workingTree, const CTGitPathList& pathList, CString& message, DWORD& exitcode, CString& error) |
| 317 | { |
nothing calls this directly
no test coverage detected