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

相关文章
|
安全 Unix Linux
|
Unix Linux Shell
|
9月前
|
存储 开发工具 git
详解git的使用
详解git的使用
|
9月前
|
开发工具 git
git blame
git blame 是一个 Git 命令,用于显示某个文件中每一行代码的修改历史。它会显示每行代码的最后一次修改者、修改日期和修改内容。通过 git blame 命令,你可以轻松追踪代码的修改记录,了解团队成员在开发过程中的协作情况。
226 10
|
9月前
|
网络安全 开发工具 vr&ar
Git 详解(二)
Git 详解(二)
114 0
|
9月前
|
Linux 开发工具 git
git初识
git初识
53 0
|
开发工具 git
Git 这些小技巧你知道吗?
Git 这些小技巧你知道吗?
143 0
Git 这些小技巧你知道吗?
|
开发工具 git
|
Unix Linux 开发工具
2. 10幅动图教你用git
2. 10幅动图教你用git
231 0
|
存储 Java Linux
Git 2.41 is here!
* Git 作为一个开源项目刚刚发布了 [2.41 版本](https://lore.kernel.org/git/xmqqleh3a3wm.fsf@gitster.g/ "2.41 版本"),其中共有 95 位开发者贡献了新的特性以及已有缺陷的修复,而他们中的 29 位是新的贡献者。我们上次聊到 Git 的最新发布动态是在[Git 2.40 版本](https://github.blog/202

热门文章

最新文章

相关实验场景

更多