Reputation: 6933
Currently, my Hudson build is set up to pull code from GitHub. In the Hudson build config, under "Source Control Management" -> "Repository URL" I have something like:
[email protected]:{companyname}/{reponame}.git
Is there any way (and what is the syntax) to point that build to my local repository, that is on my box?
Upvotes: 2
Views: 618
Reputation: 8177
Assuming your workers have access to the local file it would look like this -
file:///path/to/file/repo/project.git
Just using the file://
prefix will get you there.
Upvotes: 2