赞
踩
fatal: 无法读取远程仓库。
请确认您有正确的访问权限并且仓库存在。
打开一个命令窗口,输入:
git config --global user.name "yourname"
git config --global user.email"your@email.com"
注:yourname是你设置的用户名,your@email是你要的邮箱。没有的话在github上注册一下。
sudo rm -rf /home/w/.ssh/
注:w是我的用户名,请根据自己用户名替换
生成配置文件
ssh-keygen -t rsa -C "your@email.com"
(填你设置的邮箱地址)
会出现
Generating public/private rsa key pair.
Enter file in which to save the key (/Users/your_user_directory/.ssh/id_rsa):
直接回车就可以
浏览器上打开https://github.com/,登陆自己的账户,进入设置后,选择ssh设置
选择添加SSH Key(页面上的New SSH key)
打开SSH文件
cat ~/.ssh/id_rsa.pub
将里面的内容复制到上图中下方的Key框中,并点击Add SHH key按钮即可。
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。