Are you sure you want to continue connecting (yes/no/[fingerprint])? 这里你输入yes之后, Warning: Permanently added ‘xxxx’ (ED25519) to the list of known hosts. git@xxxx’s password: 这里会要你输入密码 ,这时候你输入你的gitlab的密码就好了,但是我这里一直出现Permission denied, please try again.这是因为我本地的 SSH 密钥没有与 GitLab 服务器关联, 于是打开我的windows终端,运行 ssh-keygen -l -f ~/.ssh/id_rsa.pub, 发现提示这个ssh-keygen: ~/.ssh/id_rsa.pub: No such file or directory,这是以为你本地没有生成一个ssh 秘钥,然后的话这时候你需要的是,使用这个ssh-keygen -t ed25519 -C “your_gitlab_username” your_gitlab_username这个是填的你gitlab的账号, 之后在