对GitLab, SSH 方式进行 clone
Git Bash
, 先配置用户名和邮箱git config --global user.name "用户名"
git config --global user.email "邮箱"
git config --global core.autocrlf false (禁止自动转换换行符)
SSH Key
cd ~/.ssh 如果没有就自行创建一个 mkdir .ssh
ssh-keygen -t rsa -C "刚刚设置的邮箱"
在这里途中会弹出
Generating public/private rsa key pair.
Enter passphrase (empty for no passphrase): (这里可以直接回车Enter)
Enter same passphrase again: (这里可以直接回车Enter)
如果直接打出下面信息证明成功了
Your identification has been saved in /c/Users/13081/.ssh/id_rsa.
Your public key has been saved in /c/Users/13081/.ssh/id_rsa.pub.
The key fingerprint is:
SHA256:xxxxxxxxx
The key's randomart image is: xxxxxxxxx
复制key
cat id_rsa.pub
复制屏幕中的一串key, 这串key 是以 ssh-rsa 开头, 以刚刚设置的邮箱名结尾。
登陆 GitLab 并点击头像,跳转到Settings界面,点左侧的SSH keys按钮,在界面中填入刚才复制的key并起一个名(或不起),点击Add Key即可
git clone git@xxx:xxx/xxx.git