I have setup Jenkins server on windows10 pro and created a GitHub project job in it.
When I build this project, below command will be time out.
I have set the timeout value to be 1 hour but it is still timed out.
So I believe it relates to git
command on windows.
C:\Users\devel\scoop\shims\git.exe fetch --tags --progress https://github.com/XXX/test.git/ +refs/heads/*:refs/remotes/origin/* # timeout=60
Then I tried to run below command manually through windows command window and it works fine.
C:\Users\devel\scoop\shims\git.exe fetch --tags --progress https://github.com/XXX/test.git/ +refs/heads/*:refs/remotes/origin/*
How to solve this issue on windows?