Git

简介: Git安装

1.Gitlab代码托管服务器安装

①Gitlab简介

Untitled

官网:https://about.gitlab.com/

②Gitlab安装

安装相关依赖:

yum install curl policycoreutils openssh-server openssh-clients postfix policycoreutils-python -y

启动ssh服务&设置为开机启动:

systemctl enable sshd && systemctl start sshd

查看开启状态:

systemctl status sshd

设置postfix开机自启,并启动,postfix支持gitlab发信功能:

systemctl enable postfix && systemctl start postfix

清空规则:

iptables -F

关闭防火墙:

systemctl stop firewalld

systemctl disable firewalld

相关文章
|
6月前
|
网络安全 开发工具 vr&ar
Git 详解(二)
Git 详解(二)
90 0
|
安全 Linux 开发工具
|
开发工具 git
|
Linux Shell 网络安全
|
Unix Linux Shell
|
开发工具 git 开发者
深入Git-变基
前言 在Git中整合不同分支的修改主要有两种方法:merge和rebase。其中merge在一般的团队中使用的比较多,而rebase则使用的比较少。本篇文章将主要介绍变基(rebase)的概念以及探讨我们应该在什么时候使用它。
|
存储 安全 Linux
|
关系型数据库 MySQL 应用服务中间件
Git相关知识
Git相关知识
193 0
|
开发工具 git
哇哦,Git居然还能这样玩~
哇哦,Git居然还能这样玩~
125 0
哇哦,Git居然还能这样玩~
|
缓存 JSON Linux
git
-
260 0

相关实验场景

更多