PYCHARM. Project update over SSH fails if there are many repositories
Answered
I have a problem with PyCharm.
I can't update all my projects over SSH from GitLab service. Pycharm open as much connections with GitLab service as much repositories i have IN PARALLEL. It is just kill my computer and GitLab server.
HOW CAN I LIMIT NUMBER OF PARALLEL CONNECTIONS WITH GIT REPOSITORIES WHEN PRESS BUTTON "UPDATE PROJECT"?
Please sign in to leave a comment.
Hello
To solve this, you could:
1. Limit the number of roots to fetch in parallel. To do so go to Help -> Find Action - Registry and change the `git.parallel.fetch.threads` value to e.g 3 or try other values (some useful info can be found in the description of this key)
2. Use VCS - GIt - Pull instead of the Update project to update a single root at a time. This is no very convenient though.