Git 服务器 利用 hook 实现自动部署

git 自动部署

原理

  1. 客户端 push 之后会触发 git hook 执行 hook下面的 post-receive
  2. 通过 post-receive 执行shell脚本将在 web 目录下拉取项目

    实现

    s 表示 git 服务器端,c 表示 git 客户端

    搭建 git 服务器

    添加 git 账号

    $ groupadd git;
    $ useradd -d /home/git -m git

    创建证书 配置 git 账户 ssh

    ssh 配置文件在 /etc/ssh/sshd_config里面,修改里面内容

    RSAAuthentication yes   
    PubkeyAuthentication yes   
    AuthorizedKeysFile .ssh/authorized_keys

    创建 git 的 .ssh
    将允许进行登录的公钥放在 authorized_keys 里面一个一行
    如果失败,尝试执行ssh-keygen重新生成 RSA

    cd /home/git/
    mkdir .ssh
    chmod 755 .ssh
    touch .ssh/authorized_keys
    chmod 644 .ssh/authorized_keys

    初始化 Git 仓库

    cd /home/git
    git init --bare uucheers.git
    chown -R git:git uucheers.git
    #克隆
    git clone git@ip:uucheers.git
    git clone git@ip:/home/git/uucheers.git
    #在项目目录里面 git clone 过去 
    git clone /home/git/uucheers.git
    #同时 更改权限 不然 git 用户没法写入

hook

在项目目录下

cd /home/git/uucheers/hooks
vim post-receive

输入如下内容

#!/bin/sh
#
#判断是不是远端仓库
IS_BARE=$(git rev-parse --is-bare-repository)
if [ -z "$IS_BARE" ]; then
echo >&2 "fatal: post-receive: IS_NOT_BARE $IS_BARE"
exit 1
fi

unset GIT_DIR
DeployPath="/usr/local/src/uucheers-docker/app/uucheers"
echo "==============================================="
cd $DeployPath
echo "deploying the project"
#git stash
#git pull origin master
git fetch --all
git reset --hard origin/master
time=`date`
echo "web server pull at webserver at time: $time."
echo "================================================"

chmod +x post-receive 添加执行权限

本作品采用《CC 协议》,转载必须注明作者和本文链接
高度自律,深度思考,以勤补拙
《L01 基础入门》
我们将带你从零开发一个项目并部署到线上,本课程教授 Web 开发中专业、实用的技能,如 Git 工作流、Laravel Mix 前端工作流等。
《G01 Go 实战入门》
从零开始带你一步步开发一个 Go 博客项目,让你在最短的时间内学会使用 Go 进行编码。项目结构很大程度上参考了 Laravel。
讨论数量: 2

如果仓库在GitHub呢

6年前 评论

@lovecn GitHub 有 Webhooks,触发 post 请求到服务器,服务器执行 shell 脚本拉取远程仓库。详细参考 https://developer.github.com/webhooks/

6年前 评论

讨论应以学习和精进为目的。请勿发布不友善或者负能量的内容,与人为善,比聪明更重要!