mac中git配置

配置git的一些环境数据

  1. 设置用户名和邮箱

    git config --global user.name "leon"
    git config --global user.email "[email protected]"
    
  2. 通过终端创建ssh key

    ssh-keygen -t rsa -C "[email protected]"
    
  3. 查看生成的 .ssh/id_rsa.pub 文件

    open .ssh/id_rsa.pub 
    

    open命令无法使用就直接用cat查看

    cat .ssh/id_rsa.pub
    
  4. 将生成的ssh key配置到github中

你可能感兴趣的:(开发环境配置,git,macos,github)