系统相关
首页 > 系统相关> > linux mint 开发环境配置

linux mint 开发环境配置

作者:互联网

涉及范围

svn,gitlab,github

准备工作

安装svn,git,openssl,idea社区版,jdk1.8

遇到问题

1.gitlab,github

eval $(ssh-agent -s)
ssh-add ~/.ssh/other_id_rsa
复制代码

编辑 ~/.ssh/config

# GitLab.com server
Host gitlab.com
RSAAuthentication yes
IdentityFile ~/.ssh/config/private-key-filename-01
# Private GitLab server
Host gitlab.company.com
RSAAuthentication yes
IdentityFile ~/.ssh/config/private-key-filename
复制代码

 

2.svn E120171 E120171解决参考:superuser.com/questions/1… 3.svn E230001

cd ~/.subverasion/
mkdir tmp
cd tmp
svn co svn地址
输入p(永久的接受 accept permanently)
输入用户名密码
复制代码

完毕之后会下载,直接ctrl+c 退出,这时候问题已解决


作者:捉虫的喵喵
链接:https://juejin.cn/post/6915217785186418696
 

标签:svn,IdentityFile,配置,com,gitlab,ssh,linux,config,mint
来源: https://blog.51cto.com/u_15169172/2710097