首页 > 其他 > 详细

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

时间:2015-05-07 13:57:25      阅读:4497      评论:0      收藏:0      [点我收藏+]

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

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

原文:http://www.cnblogs.com/yidaxia/p/4484561.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!