github fatal: 'orgin' does not appear to be a git repository fatal: Could not read from remote re...

git clone [email protected]:lieqiang/vue-chat.git
输入 git clone 自己远程仓库时报 Please make sure you have the correct access rights and the repository exists.错误,原因是git服务器没有存储本地ssh密钥。

解决步骤:

  1. 删除 .ssh 文件夹中的 known_hosts 文件,不删除会有问题;
    windows目录:C:\Users\(本地用户名)\.ssh
    mac目录:

    image.png

  2. 在下载好的Git中的bin目录下(一般是 C:\Program Files\Git\bin)打开bash.exe输入命令ssh-keygen -t rsa -C "username" (注:username为你git上的用户名或者邮箱),mac打开终端输入命令即可,如下截图

    image.png

如果执行成功。返回:
Generating public/private rsa key pair.
Enter file in which to save the key (/Users/username/.ssh/id_rsa): // 这里的username是电脑上的用户名,这个地址也是文件的存储地址,然后按回车,

如果以前有存储地址会返回/Users/your username/.ssh/id_rsa already exists.Overwrite (y/n)?直接输入y回车。

如果以前没有储存地址就会出现Enter passphrase(empty for no passphrase);也直接回车,

两种情况回车后都会出现 Enter same passphrase again 然后接着回车会显示

image.png

这说明SSH key就已经生成了。文件目录就是:username/.ssh/id_rsa.pub

  1. 然后找到系统自动在.ssh文件夹下生成两个文件,id_rsaid_rsa.pub,用记事本打开id_rsa.pub将全部的内容复制。

    image.png

  2. 打开https://github.com,进入Settings页面,找到 SSH and GPG keys,新增一个 New SSH key

    AD0F8958-1770-47F7-9B8B-007CCF7CF521.png

  3. 输入Title ,然后将id_rsa.pub中的文本复制粘贴到key中,点击 Add SSH key保存;

  4. bash.exe 或者 mac 终端中中输入ssh -T [email protected]然后会跳出一堆内容你只需输入yes或者回车;

    5624220C-B1EC-4B72-ACCB-58AE36DDB5B0.png

大功告成,再次输入 git clone 就可以拉取代码了;

image.png

你可能感兴趣的:(github fatal: 'orgin' does not appear to be a git repository fatal: Could not read from remote re...)