Ok, we have found a few issues with the latest release of Gemini and the SVN integration.
To rectify these (until a patch is released):
Add the highlighted after line 144 of the PostCommitHandler:
sourceControlComment.IssueID = issueID;
sourceControlComment.ProjectID = Program.GeminiServiceManager.IssuesService.GetIssue(issueID).ProjectID;
Program.GeminiServiceManager.IssuesService.CreateComment(issueID, sourceControlComment);
Add a try catch block around the create source control file call, line 205:
try
{
Program.GeminiServiceManager.IssuesService.CreateSourceControlFile(issueID, sourceControlFileLink);
}
catch
{
}