linux 配置git链接GitHub

  1. 首先设置本地信息:
/*设置本地仓库信息*/
git config --global user.name "zhangzhaofei"
git config --global user.email "[email protected]"
/*查看配置信息*/
git config --list  
  1. 查看(创建)密钥
    ssh-keygen -t rsa -C ‘[email protected]
    (已创建的默认在~.ssh内)
    把id_rsa.pub放进https://github.com/settings/ssh/new里

你可能感兴趣的:(git,github,linux)