【getea】-关于git的ssh免密设置

1,登陆任意用户的命令行界面生成一个秘钥

git config --global user.name "yourname"
git config --global user.email "yourname@youremail.com"
ssh-keygen -t rsa -C "your_email@youremail.com"

2,查看生成的秘钥对的公钥信息并复制

cat ~/.ssh/id_rsa

3,将公钥复制到git对应的可视化界面中对应的地方

例如:

登陆你的github帐户。点击你的头像,然后 Settings -> 左栏点击 SSH and GPG keys -> 点击 New SSH key

4,调整链接到远程的链接方式

#如果是要新关联可以远端库
git remote add origin git@yourdomain:AccountName/WarehouseInfo

eg:
git remote add origin git@gitee.com:lowcode-china/h5_-dooring.git

#如果已经有拉到库了,则调整链接的地址信息
git remote set-url origin git@gitee.com:lowcode-china/h5_-dooring.git


#附加信息:
可以使用如下命令查看'remote "origin"'处的信息的变更:
 cat .git/config

5,如果存在端口不是默认端口的情况,则需要在用户的家目录中新增一个文件,内容如下:

cat ~/.ssh/config
Host yourdomain
  Prot yourPort


eg:
cat >>~/.ssh/config<<EOF
HOST 12306.com
  Port 10000

6,最后测试连通性

#测试是否能无密访问
ssh -i ~/.ssh/id_rsa.pub -T git@yourdomain -p yourport

#测试是否能无需密码直接下来资源数据
git push -u origin master

上一篇:Windows8.1和Ubuntu14.04双系统卸载Ubuntu參考教程[图]


下一篇:ugui在运行时改变RectTransform的大小和获取宽高