赞
踩
https://git-scm.com/download/win
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.打开你的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 —直接这个在终端执行也可以
1.进入.ssh目录: cd ~/.ssh
2.找到id_rsa.pub文件: ls
3.查看公钥: cat id_rsa.pub
cat ~/.ssh/id_ed25519.pub
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。