SCM Notifier doesn't seem to work for one of my projects. It says "Checking...." and that's it. I tried with the private key added in the Settings>remote section of tortoiseGit and i tried without that key, nothing works. With another project it works.
I tried to debug your code and it seems that it gets blocked on this (from scmrepository.cs):
while ((line = er.process.StandardOutput.ReadLine()) != null)
lines.Add(line);
When commented those ReadLine commands, it gets blocked on
er.process.WaitForExit();
Do you know why this happens? What can i do to make it work?
Does it work for more than one remote?
SCM Notifier doesn't seem to work for one of my projects. It says "Checking...." and that's it. I tried with the private key added in the Settings>remote section of tortoiseGit and i tried without that key, nothing works. With another project it works.
I tried to debug your code and it seems that it gets blocked on this (from scmrepository.cs):
while ((line = er.process.StandardOutput.ReadLine()) != null)
lines.Add(line);
When commented those ReadLine commands, it gets blocked on
er.process.WaitForExit();
Do you know why this happens? What can i do to make it work?
Does it work for more than one remote?