GIT 设置

安装 git

添加用户

git config --global user.name "username"
git config --global user.email "[email protected]"

生成 SSH 公钥私钥对

ssh-keygen -t rsa -C "[email protected]"

你可能感兴趣的:(GIT 设置)