Gitlab的SSH配置(linux和window双版本)
2021-05-02 06:26
标签:ras lan 执行 协议 power use win 导致 erp config内容如下: 如果gitlab还没有项目,可以新建一个,再clone空项目下来。 按理说github设置SSH原理是完全相同的。 2. 可能出现的情况 Gitlab的SSH配置(linux和window双版本) 标签:ras lan 执行 协议 power use win 导致 erp 原文地址:http://www.cnblogs.com/fanbi/p/7772812.html#Git Bash on Windows / GNU/Linux / macOS / PowerShell:
cat ~/.ssh/id_rsa.pub
#请先切换目录到 ~/.ssh/下
#如果不切换,当保存的文件名是自定义时,会生成在当前的目录下。
ssh-keygen -t rsa -C your.email@example.com -b 4096
#提示是否使用新的文件名
Enter file in which to save the key (~/.ssh/id_rsa):
#如果不输入新的文件名,则生成id_rsa文件。
#请输入你的gitlab账号的登录密码
Enter passphrase (empty for no passphrase):
Enter same passphrase again:
type %userprofile%\.ssh\id_rsa.pub | clip
cat ~/.ssh/id_rsa.pub | clip
cd ~/.ssh/
mkdir config
# GitLab.com server
Host gitlab
Hostname gitlab.com
User git
IdentityFile ~/.ssh/id_rsa
ssh -T git@gitlab
#如果已经配置好,则会提示
Welcome to GitLab, Your GitLab NickName!
git clone git@gitlab.com:username/yourProject.git #(SSH方式)
#如果用SSH clone失败了,请尝试用HTTPS clone
git clone https://gitlab.com/username/yourProject.git #(HTTPS方式)
文章标题:Gitlab的SSH配置(linux和window双版本)
文章链接:http://soscw.com/index.php/essay/81209.html