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

Jenkins Host key verification failed

查看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

相关文章:

  • 2022-12-23
  • 2021-08-22
  • 2021-12-20
  • 2021-04-11
  • 2021-09-14
  • 2021-08-01
  • 2021-10-03
  • 2022-12-23
猜你喜欢
  • 2021-06-20
  • 2021-06-04
  • 2021-06-22
  • 2021-07-21
  • 2021-07-23
  • 2021-10-29
相关资源
相似解决方案