windows

  1. 下载:windows-git
  2. 在安装界面,一路next
  3. 打开终端,配置用户名和邮箱

    1. git config --global user.name "Your Name"
    2. git config --global user.email "email@example.com"
  4. 生成密钥,一路回车

    1. ssh-keygen -t rsa -C "youremail@example.com"

无论macOS还是linux系统,安装完成后,一定执行上面步骤3、4。

更多详细教程,请参照廖雪峰老师的文档:git文档