Reputation: 3170
To build my project, I need to pull 3 git repositories.
In the stage view, I only see the commits from 1 of those 3 git repositories.
How can I tell Jenkins about the other 2 repos?
Upvotes: 0
Views: 2598
Reputation: 6160
I think that if you're using a Pipeline job then the suggestion from @Mor Lajb is working properly. You can basically specify the three git sources directly from the pipeline Groovy script.
Conversely, if you're using a multi-branch pipeline job then you probably need to select 'configure' from within your project and under 'branch sources' add as many git sources you need (use add source button).
Upvotes: 3