
Git
文章平均质量分 54
gcygeeker
^_^
展开
-
GitLab-CI配置流水线部署
简介基本概念GitLab-CIGitLab-CI 即为 GitLab Continuous Integration,也就是GitLab自带的持续集成工具。其思想就是每次用户push代码到GitLab上时触发执行gitlab-ci.yml 脚本,脚本的内容包括了测试,编译,部署等一系列自定义的内容。GitLab-Runner安装GitLab runner官网安装教程https://d...原创 2020-01-15 12:13:08 · 14254 阅读 · 1 评论 -
在一台电脑上分Host配置多个ssh key
1.创建新的ssh key$ ssh-keygen -t rsa -C "your.email@example.com" -b 4096Generating public/private rsa key pair.Enter file in which to save the key (/home/xxx/.ssh/id_rsa): 设置文件名,注意这里要写绝对路径,如/home/xx...原创 2018-11-22 22:07:14 · 1417 阅读 · 1 评论