当前位置:   article > 正文

#Git使用篇:Mac&Window---git生成/添加SSH公钥---安装--TortoiseGit使用_git 生成ssh

git 生成ssh

安装程序的地址

https://git-scm.com/download/win

可视化工具SourceTree、TortoiseGit

https://git-scm.com/downloads/guis 可视化工具的地址 SourceTree、TortoiseGit等

汉化

在这里插入图片描述
在这里插入图片描述

配置步骤

01,GitBush中输入用户名和邮箱
git config --global user.name “”
git config --global user.email “”
02,本地生成ssh
ssh-keygen -t rsa(可直接回车到底)
在C:\Users\application.ssh会生成id_rsa和id_rsa.pub
将id_rsa.pub交给后台人员配置
043电脑目录打开Tortoisegit找到PuTTYgen
点击load,在c盘\User\application.shh文件中选择id_rsa并点击Save private key保存文件为.ppk格式
在这里插入图片描述

05,当拉取项目时load Putty key处选择保存的.ppk文件即可
在这里插入图片描述

有时代码拉下来没有绿色对勾,重启电脑就好了

生成密钥

参考地址码云仓库的教程
终端输入ssh-keygen -t ed25519 -C “xxxxx@xxxxx.com” 连续按压3次回车

ssh-keygen -t ed25519 -C "xxxxx@xxxxx.com"  
# Generating public/private ed25519 key pair...
  • 1
  • 2

window查看公钥

1.打开你的git bash 窗口
2.进入.ssh目录: cd ~/.ssh
3.找到id_rsa.pub文件: ls
4.查看公钥: cat id_rsa.pub 或者 vim id_rsa.pub
5.绝对路径cat ~/.ssh/id_rsa.pub —直接这个在终端执行也可以

Mac查看公钥

1.进入.ssh目录: cd ~/.ssh
2.找到id_rsa.pub文件: ls
3.查看公钥: cat id_rsa.pub

cat ~/.ssh/id_ed25519.pub
  • 1
声明:本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:【wpsshop博客】
推荐阅读
相关标签
  

闽ICP备14008679号