当前位置:   article > 正文

git免密登录_git 搭建 免密

git 搭建 免密

查看~/.ssh目录下是否生成秘钥,有的话删除

1.重新生成秘钥

[root@db02 ~/.ssh]# ssh-keygen -t rsa -C "wcp@163.com"

2.查看秘钥并且复制

[root@db02 ~/.ssh]# cat id_rsa.pub

3.打开github或者你公司的git的网页,在Settings–>SSH keys中点击New SSH Keys把复制的秘钥粘贴并保存退出

4.找一目录执行

git init  #初始化git目录

5.添加远程仓库

[root@db02 /test]# git remote add origin git@github.com:wcp-one/plugin.git

6.添加用户的信息

  1. [root@db02 /test/plugin]# git config --global user.name "wcp-one"
  2. [root@db02 /test/plugin]# git config --global user.email "wcp@163.com"

7.添加上传分支

  1. [root@db02 /test/plugin]# git add open-falcon.sh
  2. [root@db02 /test/plugin]# git commit -m "init files"

8.上传

[root@db02 /test/plugin]# git push -u origin master
成功免密上传


报错解决:

  1. [root@db02 /test/plugin]# git push origin master
  2. Warning: Permanently added the RSA host key for IP address '13.229.188.59' to the list of known hosts.
  3. error: src refspec master does not match any.
  4. error: failed to push some refs to 'git@github.com:wcp-one/plugin.git'
2步解决

1.在/etc/hosts下添加

13.229.188.59 github.com

2.添加上传信息参上


声明:本文内容由网友自发贡献,转载请注明出处:【wpsshop】
推荐阅读
相关标签
  

闽ICP备14008679号