您好,按照指南(https://www.linux.com/learn/how-run-your-own-git-server),我可以通过命令行在我的服务器上使用 git 和存储库。我安装了 GitKraken,并在我的电脑上打开了存储库目录。它识别远程存储库,但我无法拉/推。单击编辑原点,我得到:
Name : origin
Pull URL: ssh://user@hostname/home/user/project-1.git
Push URL: ssh://user@hostname/home/user/project-1.git
Gitkraken 的错误是:
Configured SSH key is an invalid format.
Please ensure that your key is valid and is an RSA-type key
我已经尝试使用
ssh-keygen -t rsa
和
cat ~/.ssh/id_rsa.pub | ssh user@hostname 'cat >> .ssh/authorized_keys'