def _validate_git_url()

in launcher/config_validator/value_validator.py [0:0]


def _validate_git_url(config: DictConfig) -> None:
    repo_url_or_path = get_argument(config, "git.repo_url_or_path")
    if repo_url_or_path is not None:
        if repo_url_or_path.startswith("git@"):
            raise ValueError("Currently we do not support to clone repo use ssh, please use http with token instead")