网站首页
编程语言
数据库
系统相关
其他分享
编程问答
IdentityFile
2023-09-29
Windows下SSH配置多账号
C:\Users\Administrator\.ssh目录下新建config文件config文件内容如下配置了两个账号,举例如下#githubHostgithub.comHostNamegithub.comIdentityFile~/.ssh/github_id_rsaPreferredAuthenticationspublickey#giteeHostgitee.comHostNamegitee.comIdentityFile~/
2023-09-06
git多用户设置
在.ssh新建config:Defaultgithubuser(
[email protected]
),注意User项直接填git,不用填在github的用户名Hostgithub.comHostNamegithub.comUsergitIdentityFile~/.ssh/id_rsa_githubseconduser(
[email protected]
)建一个gitlab别名,新建的帐号使用这个别名做克隆和更新Host
2023-08-15
VS Code通过public key连接服务器开发
1.需要安装的插件:Remote-SSH2.配置Remote-SSH安装完Remote-SSH以后左侧会出现一个远程资源管理的图标,选择SSHTargets,进入config配置文件选择文件地址填写网址信息:#自己取个名字Host192.168.141.234#服务器地址HostName192.168.141.234#自己的服务器用户名Userjinb