如何使用GitBash通过ssh(Windows 10环境)克隆数据

问题描述 投票:0回答:1

我该如何解决这个问题?当我想连接我的个人GitLab帐户时,收到如下图所示的错误消息

### shell script     
git clone [email protected]:<username>/test1.git

enter image description here

GitLab服务器端

enter image description here

克隆ssh地址

enter image description here

PS:我已经检查并找到了StackOverflow的一些参考,但不幸的是,这对我来说不是一件好事1.git clone through ssh2.SSH and Git Clone3. git clone with ssh issue

windows git windows-10 gitlab git-clone
1个回答
0
投票

我找到了很好的参考资料,但对Mandarin website感到抱歉,但是,我可以使用我的方式来分享此问题。

步骤1:

ls -al ~/.ssh

enter image description here

步骤2:

ssh-keygen 

((使用Enter键作为默认值)enter image description here第3步:设置配置文件

vim /c/Users/Willie/.ssh/config

主持人gitlab.com主机名gitlab.com用户gitIdentityFile〜/ .ssh / id_rsa

步骤4:

git clone [email protected]:<username>/test2.git

enter image description here

第5步:完成第4步后1. test2.git文件将被下载完成2.您将在〜/ .ssh中获得新文件(known_hosts)enter image description here

© www.soinside.com 2019 - 2024. All rights reserved.