# Gitea 安装

Gitea 官网 https://gitea.io/zh-cn/ (opens new window)

安装视频教程 (opens new window)

# 使用脚本安装

wget -O install-gitea.sh https://gcslaoli.gitee.io/script/install-gitea.sh
sh install-gitea.sh

# 当前脚本内容

#下载gieta
wget -O gitea https://dl.gitea.io/gitea/1.13.0/gitea-1.13.0-linux-amd64
chmod +x gitea
#安装git
yum install git -y
#创建git用户及组
useradd git
#创建目录及权限
mkdir -p ./{custom,data,log}
chown -R git:git ./
chmod -R 750 ./

# 启动配置

environment = HOME="/home/git"
Last Updated: 2022/11/13 12:30:47