I have found the problem , The new OpenSSH versions disable the ssh-dss (DSA) public key algorithm. DSA was deemed too weak and OpenSSH community recommends against its use.
If you see an error similar to this:
Unable to negotiate with 10.96.8.72: no matching host key type found.
Their offer: ssh-dss
...then you must re-enable the DSA keys by editing your ~/.ssh/config file to add the following line:
HostkeyAlgorithms +ssh-dss
You may need to create the ~/.ssh/config file if it does not already exist.
After creating the file, you must restrict access permissions:
chmod 600 ~/.ssh/config
and then do the clone.
That should work perfectly fine!