Reputation: 43
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
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