mike.tihonchik
mike.tihonchik

Reputation: 6933

How to point Hudson build to my local git repository?

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

Answers (1)

RyPeck
RyPeck

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

Related Questions