网站首页 站内搜索

搜索结果

查询Tags标签: GitLab,共有 196条记录
  • 【git基础】Windows下Git多账号配置,同一电脑多个ssh-key的管理

    step1: gitlab$ ssh-keygen -t rsa -C xxx.yy@zzz.com Generating public/private rsa key pair. Enter file in which to save the key (/c/Users/xxx/.ssh/id_rsa): id_rsa_gitlab Enter passphrase (empty for no passphrase): Enter same passphrase again: Your iden…

    2021/8/3 7:07:16 人评论 次浏览
  • 【git基础】Windows下Git多账号配置,同一电脑多个ssh-key的管理

    step1: gitlab$ ssh-keygen -t rsa -C xxx.yy@zzz.com Generating public/private rsa key pair. Enter file in which to save the key (/c/Users/xxx/.ssh/id_rsa): id_rsa_gitlab Enter passphrase (empty for no passphrase): Enter same passphrase again: Your iden…

    2021/8/3 7:07:16 人评论 次浏览
  • 使用 GitLab CI/CD 和阿里云 CLI 自动部署前端项目

    一、什么是 CI/CD? CI(持续交付)是功能迭代后自动构建、打包、校验代码格式、跑单测、单测覆盖率,常见的就是 Webpack、Rollup、ESLint等。 CD(持续部署)是经过 CI 后,代码自动部署到服务器。 在 GitLab 中部署 CI、CD GitLab CI/CD 通 .gitlab-ci.yml 配置文件来部…

    2021/8/3 6:07:28 人评论 次浏览
  • 使用 GitLab CI/CD 和阿里云 CLI 自动部署前端项目

    一、什么是 CI/CD? CI(持续交付)是功能迭代后自动构建、打包、校验代码格式、跑单测、单测覆盖率,常见的就是 Webpack、Rollup、ESLint等。 CD(持续部署)是经过 CI 后,代码自动部署到服务器。 在 GitLab 中部署 CI、CD GitLab CI/CD 通 .gitlab-ci.yml 配置文件来部…

    2021/8/3 6:07:28 人评论 次浏览
  • 编程语言-6-代码仓库GitLab在centos7中安装

    参考Centos7下搭建Gitlab 参考清华大学开源软件镜像站 参考GitLab官方文档 参考centos7安装gitLab 1 GitLab简介 GitLab 是一个用于仓库管理系统的开源项目,使用Git作为代码管理工具,并在此基础上搭建起来的web服务。 GitLab由乌克兰程序员DmitriyZaporozhets和ValerySi…

    2021/8/1 7:09:04 人评论 次浏览
  • 编程语言-6-代码仓库GitLab在centos7中安装

    参考Centos7下搭建Gitlab 参考清华大学开源软件镜像站 参考GitLab官方文档 参考centos7安装gitLab 1 GitLab简介 GitLab 是一个用于仓库管理系统的开源项目,使用Git作为代码管理工具,并在此基础上搭建起来的web服务。 GitLab由乌克兰程序员DmitriyZaporozhets和ValerySi…

    2021/8/1 7:09:04 人评论 次浏览
  • centos8搭建 gitlab

    准备工作 一台云服务器,最低配置为2gb内存,安装gitlab2gb是不够的,需要配置虚拟内存,虚拟内存设置为5gb即可 1.安装ssh sudo yum install -y curl policycoreutils-python openssh-server 2.将SSH服务设置成开机自启动,安装命令: sudo systemctl enable sshd 3.启动…

    2021/7/22 7:08:07 人评论 次浏览
  • centos8搭建 gitlab

    准备工作 一台云服务器,最低配置为2gb内存,安装gitlab2gb是不够的,需要配置虚拟内存,虚拟内存设置为5gb即可 1.安装ssh sudo yum install -y curl policycoreutils-python openssh-server 2.将SSH服务设置成开机自启动,安装命令: sudo systemctl enable sshd 3.启动…

    2021/7/22 7:08:07 人评论 次浏览
  • 树莓派安装Gitlab-runner

    官方下载地址:https://gitlab-runner-downloads.s3.amazonaws.com/latest/index.html 官网安装文档:https://docs.gitlab.com/runner/install/linux-manually.html sudo curl -L --output /usr/local/bin/gitlab-runner "https://gitlab-runner-downloads.s3.amazo…

    2021/7/20 6:37:03 人评论 次浏览
  • 树莓派安装Gitlab-runner

    官方下载地址:https://gitlab-runner-downloads.s3.amazonaws.com/latest/index.html 官网安装文档:https://docs.gitlab.com/runner/install/linux-manually.html sudo curl -L --output /usr/local/bin/gitlab-runner "https://gitlab-runner-downloads.s3.amazo…

    2021/7/20 6:37:03 人评论 次浏览
  • GitLab CI/CD 报错

    GitLab CI/CD 新装gitlab玩ci/cd, 测试ci时报错如下: Running with gitlab-runner 14.0.1 (c1edb478)on raspberrypi UmXUDCNM Preparing the "shell" executor 00:00 Using Shell executor... Preparing environment 00:01 Running on raspberrypi... ERROR: …

    2021/7/20 6:37:03 人评论 次浏览
  • GitLab CI/CD 报错

    GitLab CI/CD 新装gitlab玩ci/cd, 测试ci时报错如下: Running with gitlab-runner 14.0.1 (c1edb478)on raspberrypi UmXUDCNM Preparing the "shell" executor 00:00 Using Shell executor... Preparing environment 00:01 Running on raspberrypi... ERROR: …

    2021/7/20 6:37:03 人评论 次浏览
  • CentOS7搭建GitLab

    开始之前,准备一台全新的centos7系统虚拟机备用 在CentOS系统上安装所需的依赖:ssh,防火墙,postfix(用于邮件通知) ,wget,以下这些命令也会打开系统防火墙中的HTTP和SSH端口访问。 注意: su root 1. 安装ssh sudo yum install -y curl policycoreutils-python opens…

    2021/7/18 7:09:33 人评论 次浏览
  • CentOS7搭建GitLab

    开始之前,准备一台全新的centos7系统虚拟机备用 在CentOS系统上安装所需的依赖:ssh,防火墙,postfix(用于邮件通知) ,wget,以下这些命令也会打开系统防火墙中的HTTP和SSH端口访问。 注意: su root 1. 安装ssh sudo yum install -y curl policycoreutils-python opens…

    2021/7/18 7:09:33 人评论 次浏览
  • gitlab 安装踩坑 2G内存的安装不了gitlab

    安装时安装了 但执行gitlag-ctl reconfigure 的时候,会启动不起来,cpu爆满; 服务器卡死,命令行输入不了都!最后只能从服务器平台重启服务器,短暂时间内里面卸载gitlab,删除进程,删除gitlab文件释放资源;

    2021/7/15 7:10:26 人评论 次浏览
扫一扫关注最新编程教程