Ubuntu 下生成git公钥
2020-11-20 本文已影响0人
Charles2018
git config --global user.name "你的名字"
git config --global user.email "你的邮箱"
用ssh-keygen命令在/root/.ssh/下生成公钥密钥
ssh-keygen -t rsa -C "你的邮箱"

git config --global user.name "你的名字"
git config --global user.email "你的邮箱"
用ssh-keygen命令在/root/.ssh/下生成公钥密钥
ssh-keygen -t rsa -C "你的邮箱"