安装Git教程、配置SSH
参考文档:
https://blog.csdn.net/weixin_49380944/article/details/125905959
windows
git新版本下载安装参考上述链接
版本记录:2.42.0
配置
git config --global user.name "kotewall"
git config --global user.email a163wx@163.com
ubuntu
sudo add-apt-repository ppa:git-core/ppa
sudo apt update
sudo apt install git
##配置SSH
配置SSH参考网上教程,linux只需执行几句命令行就可。
windows可以从可选功能里选择安装openssh服务。
神坑地方:本人采用的是win11系统当初在激活系统的时候登陆了微软的账号,导致用户文件夹,密码等都默认设置成微软账号的规则,在连接ssh的时候发现密码一直错误,后排查端口、防火墙等设置都没有改正,直到尝试使用微软账号才ssh连接成功