I am trying to clone a repository with the below C# code
try
{
var result = Repository.Clone(remoteUrl, localPath);
}
catch (Exception ex)
{
}
Repository.Clone() does not return, and there is no thrown exception. Is there anything wrong with the code? Am I missing something?