Git提交之后自动打版本并钉钉通知

我参与11月更文挑战的第8天,活动详情查看:2021最后一次更文挑战

在gitlab的服务器上,进入gitlab的数据目录\ cd /var/opt/gitlab/git-data/repositories/xxx/hooks/post-receive\

利用git的钩子post-receive

post-receive是在提交代码到服务器之后自动执行 然后进入/www/wwwroot/hook.com/git/test.git/hooks

复制一份post-receive.sample 并改名为post-receive [root@iZbp1938t1plpi1gikahmmZ hooks]# cp post-receive.sample post-receive 1 然后编辑 post-receive 添加如下代码 保存退出 DIR=/www/wwwroot/hook.com/public

``` git --work-tree=${DIR} clean -fd

git --work-tree=${DIR} checkout --force 修改post-receive 文件的权限 chmod -R 777 post-receive ``` 以下是本地配置 在本地上新建一个文件夹 然后添加为远程仓库 // 初始化一个git仓库 git init // 添加远程链接 把192.168.1.1 换成你真实服务器的ip git remote add origin root&#

你可能感兴趣的:(git,gitlab,python,ubuntu,linux)