//git bash 本地生成密钥 (公共的) ,github上加上这个公钥,然后 git bash可以本地拉去github 上的代码
git config --global user.name 'Bill'
git config --global user.mail 'your mail@example.com'
'
ssh-keygen -t ed25519 -C " your mail@example.com"
git config --global http.sslVerify "true"
git clone git@github.com:SilDev/CSharpLib.git
本文指导如何在Git Bash中创建SSH密钥对,将其添加到GitHub,以便实现本地与GitHub代码库的无缝拉取。步骤包括配置用户信息、生成密钥、验证SSL和克隆远程仓库。
195

被折叠的 条评论
为什么被折叠?



