Nupur
Nupur

Reputation: 43

Problem Of Hudson using GitHub Repositories

I am using Hudson in windows which takes the data from the GitHub Repository but is unable to clone the data because of SSH Key given in GitHub.How to provide the information of SSH in hudson so that it can access the GitHub Repository. Thnx in advance....

Upvotes: 0

Views: 223

Answers (1)

urschrei
urschrei

Reputation: 26889

You don't have to provide an SSH key to clone a Github repo. It can be read-only cloned using either:
https://github.com/user/reponame.git or
git://github.com/user/reponame.git

Upvotes: 1

Related Questions