Failed to connect to repository : Error performing command: git.exe ls-remote -h https://github.com/szabbas/Sample-programs.git HEAD

前端 未结 4 976
梦毁少年i
梦毁少年i 2020-12-10 01:27

I am new to programming and trying to work with GIT repository and while configuring with the JENKINS is facing the error. I know it\'s a silly question but on a beginner po

相关标签:
4条回答
  • 2020-12-10 02:04

    Got here much later because of the error mentioned in the question and for new comers, now you should verify your git path at:

    Jenkins > Manage Jenkins > Global Tool Configuration > Git

    In my case it didn't have the path to git binary in the PATH environment variable, so I added: C:\Program Files\Git\bin to it.

    0 讨论(0)
  • 2020-12-10 02:08

    In my case this issue happened because of there is no git installed on my CentOS server.

    1. sudo yum install git
    2. git --version

    After installing git i just make sure that my Global Tool Configuration default pointed to git Jenkins > Manage Jenkins > Global Tool Configuration > Git

    • Name : Default
    • Path to Git executable : git

    just posting this may help you in case of similar issue you had

    0 讨论(0)
  • 2020-12-10 02:10

    I got the answer...just wanted to post here so that if some new programmer are there (like me) can look the basic things :-

    While going in the project--> Configure--> set the path of the git correctly.
    

    It should be till the bin and then append git.exe like *\bin\git.exe

    0 讨论(0)
  • 2020-12-10 02:16

    Please give the installation path of git.exe in Git executable field in the Global Tool Configuration.In my case it worked after the path was set as below

    0 讨论(0)
提交回复
热议问题