jenkins创建git任务连接时遇到的问题

jenkins 创建任务后 配置 git时 报错

Jenkins Host key verification failed

jenkins: Failed to connect to repository

查看github的官方文档

#1. Check for SSH keys.
$ cd ~/.ssh
#2. Backup and remove existing SSH keys.
$ lsLists all the subdirectories in the current directory
$ mkdir key_backupmakes a subdirectory called "key_backup" in the current directory
$ cp id_rsa* key_backupCopies the contents of the id_rsa directory into key_backup
$ rm id_rsa*
#3. Generate a new SSH key.
$ ssh-keygen -t rsa -C "your_email@youremail.com"
#4. Add your SSH key to GitHub.
#5. Test everything out.
$ ssh -T git@github.com

大概意思就是你现在本地建立自己的SSH密码对,然后将公钥上传到github就行了。

转自:http://www.cnblogs.com/Leon5/archive/2011/10/23/2222002.html

原文地址:https://www.cnblogs.com/yidaxia/p/4484561.html