码迷,mamicode.com
首页 > 其他好文 > 详细

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

时间:2015-05-07 13:59:46      阅读:99      评论: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
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!