Image we have the below code snippet, I want to set this config before cloning a remote repo, but here cloneCommand.getRepository() has no repo yet as it's not cloned, so how I can set this value before the clone?
CloneCommand cloneCommand = Git.cloneRepository(`enter code here`).setURI(rempteRepo`enter code here`)
                    .setDirectory(new File(SF_COMPVRP_CODEBASE_LOCAL))
                    .setCredentialsProvider(new UsernamePasswordCredentialsProvider(this.gitHubUid, this.gitHubPwd));
StoredConfig config = cloneCommand.getRepository().getConfig();
            config.setBoolean("http", null, "sslVerify", false );
            config.save();