-
Notifications
You must be signed in to change notification settings - Fork 19
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
SCM Notifier blocked at "Checking..." for Git #7
Comments
you have solved? |
I have the same issue as well. I just waits at "checking..." forever |
I have solved this problem, maybe this can help you:
|
You need to make sure you can run the command "git fetch" via command line in the repository folder. If it errors or require user input make sure you sort it out before using SCM Notifier. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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?
The text was updated successfully, but these errors were encountered: