Hi,
if I use the Source Code Checkout task cloning the repository takes up to 9 minutes. Most of the time is spent in these steps
01:43:17 Fetching 'refs/heads/*' from 'ssh://git@stash.intapps.it:7999/ma/mybranch.git'.
01:43:17 Warning: Permanently added '[127.0.0.1]:36431' (RSA) to the list of known hosts.
01:51:55 From ssh://127.0.0.1:36431/ma/mybranch
01:51:55 * [new branch] mybranch
...
During this time the CPU load of the agent running on an AWS EC2 machine (c4.4xlarge) goes up to 100% using only one of the available 8 cores.
If I use a Script task to execute
git init myproject
cd myproject
git remote add origin ssh://git@stash.intapps.it:7999/ma/myproject.git
git fetch
cloning is much faster
14:48:59 Initialized empty Git repository in /root/bamboo-agent-home/xml-data/build-dir/MY-PROJ-JOB1/myproject/.git/
14:48:59 Warning: Permanently added '[stash.intapps.it]:7999,[10.130.14.156]:7999' (RSA) to the list of known hosts.
14:49:47 From ssh://stash.intapps.it:7999/ma/myproject
14:49:47 * [new branch] mybranch
...
What is causing this high load and how can I make cloning repositories faster?