$ git push -u origin master [email protected]: Permission denied (publickey). fatal: Could not read from remote repository.
这个是说没有拉取权限,这个时候,就需要配置ssh-key
先配置好账户/项目的SSH公钥
git config --global user.name "用户名称"
git config --global user.email "注册邮箱"
根据注册邮箱生成key
ssh-keygen -t rsa -C "[email protected]"
连续两次回车
生成地址: /c/Users/Administrator/.ssh/id_rsa
复制所有内容
保存即可连上项目路径
提交内容显示拒绝的时候,先拉取项目文件,然后,在提交
标签:git,遇到,过程,global,rsa,ssh,key,config From: https://www.cnblogs.com/kevin-yang123/p/17289058.html