Jenkins Git plugin with https

后端 未结 11 2101
Happy的楠姐
Happy的楠姐 2020-12-30 05:20

I am trying to configure a Git project in Jenkins using the Git plugin. In the project configuration page I enter the repository URL in the Git configuration, which is an ht

11条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2020-12-30 05:47

    In order to use Git in Jenkins, the following two plugins need to be installed:

    1. Git-Client-plugin
    2. Git-plugin

    The first plugin (Git-Client-plugin) is a low-level API to execute git operations (git add, git commit, git push ,git clone,..etc).

    The second plugin (Git-plugin) adds Git as an SCM option for Jenkins jobs.

    The second plugin relies on functionality from the first plugin, and so both must be present for Git to work with Jenkins.

提交回复
热议问题