sandy
sandy

Reputation: 97

Integration of jenkins with visual studio team services

I am trying to integrate jenkins with visual studio team services in order to automate build generation process.

I have followed this blog : https://www.visualstudio.com/get-started/integrate/service-hooks/jenkins-and-vso-vs

But i am not able to find git repositories option enter image description here

Can anyone please tell me what to do next as git option is not availble?

Thanks in advance.

Upvotes: 2

Views: 1374

Answers (1)

Venkata.Mutyala
Venkata.Mutyala

Reputation: 705

Before you start please make sure you have the Git Runtime installed. This is mentioned as a requirement here: https://wiki.jenkins-ci.org/display/JENKINS/Git+Plugin

After you install the Git Runtime you can install the Jenkins Git Plugin by...

Step 1) Go to Manage Jenkins:

Jenkins Home Page

Step 2) Click on "Manage Plugins"

Manage Jenkins Plugins

Step 3) Click on "Available", then search for "Git plugin", then click the box for "Git plugin" and click on "Install without restart".

Jenkins Available Plugins

Step 4) Additional dependencies/updates may get installed but you should see something like this:

Jenkins Git Plugin Installation Success

Step 5) Start using it in your project.

enter image description here

I hope this helps.

It also sounds like you may be new to Jenkins. If this is the case I would recommend checking out this quick tutorial on Jenkins CI. You can easily go through it during a free trial period on Pluralsight.com

Upvotes: 3

Related Questions