I have a simple command line build step in a Team City (9.0.2 build 32195) build configuration that just calls:
git fetch
but when I run the build configuration it just hangs. Running:
git log
works fine. Any ideas why git fetch
hangs while git log
works?
EDIT: The hanging issues seems to be caused by TC waiting for credentials when running git fetch
. So the solution would be to somehow store the credentials for git for the user running the job.