天天看点

windows:GIT基本部署-1

配置全局:

用户名:git config --global user.name ""xx""

邮箱:git config --global user.email "yy"

验证:git config --global --list

windows:GIT基本部署-1

ssh key生成:

ssh-keygen -t rsa -C "yy"

windows:GIT基本部署-1