简体   繁体   English

Git存储库未克隆

[英]Git repository not cloning

I am trying to install fat free crm using these instructions http://guides.fatfreecrm.com/Setup-Linux-or-Mac-OS.html . 我正在尝试使用这些说明http://guides.fatfreecrm.com/Setup-Linux-or-Mac-OS.html安装无脂肪crm。 But I am not able to run even the first instruction This is what I get when I try to clone the repository 但是我连第一个指令都无法运行这是我尝试克隆存储库时得到的

Cloning into 'fat_free_crm'... Permission denied (publickey). 克隆到'fat_free_crm'...权限被拒绝(公钥)。 fatal: Could not read from remote repository. 致命:无法从远程存储库读取。

Please make sure you have the correct access rights and the repository exists. 请确保您具有正确的访问权限,并且存储库存在。

I suppose its an open software so I should be having permission and it obviously exists. 我认为它是一个开放软件,因此我应该得到许可,并且它显然存在。 I have a fresh install of ubuntu with only git installed in it 我全新安装了ubuntu,仅安装了git

It is because you are trying to download using the ssh link and you have not configured your ssh. 这是因为您尝试使用ssh链接进行下载,但尚未配置ssh。 Instead try this 而是试试这个

git clone https://github.com/fatfreecrm/fat_free_crm.git
cd fat_free_crm

Have you added your ssh key to your account? 您是否已将ssh密钥添加到您的帐户?

https://help.github.com/articles/generating-ssh-keys/#step-4-add-your-ssh-key-to-your-account https://help.github.com/articles/generating-ssh-keys/#step-4-add-your-ssh-key-to-your-account

If you're not sure wether you have generated & associated a private key to SSH, you can check using: 如果不确定是否已将私钥生成并与SSH关联,则可以使用以下命令进行检查:

$ssh-add -l $ ssh-add -l

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM