def repo_clone(repo_dir, repo_url): """Clone repository to this host.""" repo = Repo.clone_from(repo_url, repo_dir) return repo