安装git后的操作
设置Git的user.name和user.email:
git config --global user.name "你的名字"
git config --global user.email "你的邮箱"
生成SSH密钥
ssh-keygen -t rsa -C "你的邮箱"
git config --global user.name "你的名字"
git config --global user.email "你的邮箱"
ssh-keygen -t rsa -C "你的邮箱"