1. 程式人生 > >ubuntu系統gogs搭建git服務器

ubuntu系統gogs搭建git服務器

backup .tar.gz 簡單 搭建 ref tps 備份 -- template

為什麽選擇gogs作為git服務器
  1. 免費開源
  2. 安裝簡單
  3. 方便升級
  4. 有備份還原功能

    gogs安裝

    useradd git #建立git用戶
    su - git
    wget https://dl.gogs.io/0.11.34/linux_amd64.tar.gz
    tar zxvf linux_amd64.tar.gz
    mkdir -p gogs/custom/conf
    touch gogs/custom/conf/app.ini
    cd gogs
    ./gogs web
    http://ip地址:3000打開安裝界面

    gogs升級

    su - git
    rm -rf gogs/templates
    wget 最新的gogs版本
    解壓即可

    gogs備份

    su - git

    cd gogs
    ./gogs backup

    gogs還原

    su - git
    cd gogs
    ./gogs restore --from="備份文件"

ubuntu系統gogs搭建git服務器