自建Git Server 並使用Git進行Unity版本控制及Git workflow(一、安裝git server)

weixin_34290000發表於2018-11-08

自己搭建git server,從網上搜尋似乎非常簡單, 只需要簡單的幾步就能完成. 但這樣的git server 只有最基本的功能, 沒有PR, 沒有Wiki, 沒有web端, 不適合工程用.
經過一番搜尋, 找到了gitea這個神器

Ubuntu安裝 gitea

很簡單,

  1. 首先確保安裝了資料庫, 我選擇了mysql:
#更新源
sudo apt-get update
#安裝, 安裝過程中會詢問root使用者名稱和密碼,自己設定即可
sudo apt-get install mysql-server
#啟動
systemctl start mysql
#隨系統啟動
systemctl enable mysql
# 登陸mysql shell
/usr/bin/mysql -u root -p
# 建立gitea資料庫, 注意, gitea資料庫的charset必須是`utf8-geleral-ci`
CREATE DATABASE IF NOT EXISTS gitea DEFAULT CHARSET utf8 COLLATE utf8_general_ci;

至此資料庫安裝完成

  1. 測試安裝gitea, 先體驗一下:
    找到一個合適的位置,執行:
# 這是目前linux最新版本(1.6)的二進位制檔案
sudo wget -O gitea https://dl.gitea.io/gitea/1.6/gitea-1.6-linux-amd64
# 賦予許可權
sudo chmod +x gitea
# 執行以下命令就可以開始測試了, 建議在一個測試資料夾中完成這個工作,因為我們畢竟是要註冊成服務的
 ./gitea web

這時,開啟http://localhost:3000將會看到gitea的初始頁面:

1431816-601a2442174be9ec.png
gitea的初始頁面

  1. 正式安裝gitea:參考:https://golb.hplar.ch/2018/06/self-hosted-git-server.html
# 更新源
sudo apt-get update
# 安裝git
sudo apt install git
# 新增git使用者用來執行gitea
sudo adduser --system --shell /bin/bash --gecos 'Gitea user' --group --disabled-password --home /home/git git
# 建立所需的資料夾結構並賦予許可權
sudo mkdir -p /home/git/gitea/{custom,data,indexers,public,log}
sudo chown git:git /home/git/gitea/{custom,data,indexers,public,log}
sudo chmod 750 /home/git/gitea/{custom,data,indexers,public,log}
sudo chown git:git /home/git/gitea
# 可以把測試時的安裝包copy進來或者重新下載
cd /home/git/gitea
sudo wget -O gitea https://dl.gitea.io/gitea/1.6/gitea-1.6-linux-amd64
sudo chmod +x gitea
# 安裝服務, github上又一個示範配置檔案,我們先下載下來
cd /home/git/gitea
sudo wget https://raw.githubusercontent.com/go-gitea/gitea/master/contrib/systemd/gitea.service
sudo nano gitea.service

可看到以下內容:

[Unit]
Description=Gitea (Git with a cup of tea)
After=syslog.target
After=network.target
#After=mysqld.service
#After=postgresql.service
#After=memcached.service
#After=redis.service

[Service]
# Modify these two values and uncomment them if you have
# repos with lots of files and get an HTTP error 500 because
# of that
###
#LimitMEMLOCK=infinity
#LimitNOFILE=65535
RestartSec=2s
Type=simple
User=git
Group=git
WorkingDirectory=/var/lib/gitea/
ExecStart=/usr/local/bin/gitea web -c /etc/gitea/app.ini
Restart=always
Environment=USER=git HOME=/home/git GITEA_WORK_DIR=/var/lib/gitea
# If you want to bind Gitea to a port below 1024 uncomment
# the two values below
###
#CapabilityBoundingSet=CAP_NET_BIND_SERVICE
#AmbientCapabilities=CAP_NET_BIND_SERVICE

[Install]
WantedBy=multi-user.target

對其中的重要內容進行修改:

Unit]
Description=Gitea (Git with a cup of tea)
After=syslog.target
After=network.target
# 使用mysql
After=mysqld.service
#After=postgresql.service
#After=memcached.service
#After=redis.service

[Service]
# Modify these two values and uncomment them if you have
# repos with lots of files and get an HTTP error 500 because
# of that
###
# 取消大檔案限制
LimitMEMLOCK=infinity 
LimitNOFILE=65535
RestartSec=2s
Type=simple
User=git
Group=git
# 此處要改
WorkingDirectory=/home/git/gitea/
# 此處要改
ExecStart=/home/git/gitea/gitea web -c /home/git/gitea/custom/conf/app.ini
Restart=always
# 此處要改
Environment=USER=git HOME=/home/git GITEA_WORK_DIR=/home/git/gitea
# If you want to bind Gitea to a port below 1024 uncomment
# the two values below
###
#CapabilityBoundingSet=CAP_NET_BIND_SERVICE
#AmbientCapabilities=CAP_NET_BIND_SERVICE

[Install]
WantedBy=multi-user.target

Save (ctrl+o) and close (ctrl+x) the editor.

# 新增服務軟連線
sudo ln -s /home/git/gitea/gitea.service /lib/systemd/system/gitea.service
sudo systemctl daemon-reload
# 啟動並檢查服務狀態
sudo systemctl start gitea
sudo systemctl status gitea
# 如果服務沒有啟動, 檢視日誌檔案
sudo journalctl -u gitea
# 新增開機啟動
sudo systemctl enable gitea
sudo systemctl is-enabled gitea

這樣就安裝好了gitea

1431816-db031174de062cbf.png
image.png
  1. 一鍵安裝(沒試過,建議不要用)
    https://git.coolaj86.com/coolaj86/gitea-installer.sh

相關文章