GIT服务器项目部署和自动同步

Posted singwa

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了GIT服务器项目部署和自动同步相关的知识,希望对你有一定的参考价值。

1.1、初始化Git仓库
首先我们选定一个目录作为Git仓库,假定是/home/data/share/share.git,在/home/data/目录下输入命令:

$ cd /home/data/
$ mkdir share
$ chown git:git share/
$ cd share

$ git init --bare share.git
Initialized empty Git repository in /home/data/share/share.git/

 

以上命令Git创建一个空仓库,服务器上的Git仓库通常都以.git结尾。然后,把仓库所属用户改为git:

$ chown -R git:git  share.git

 

1.2 配置自动同步

$ cd /home/data/share/share.git/hooks

vim post-receive

#!/bin/bash
git --work-tree=/web/share checkout -f

chmod -R 777 post-receive

 

1.3检出代码,到nginx指定的项目目录

cd /web
git clone /home/data/share/share.git/
chmod -R 777 share

 

 Windows客户端: 

git clone [email protected]39.107.77.206:/home/data/share/share.git

 


以上是关于GIT服务器项目部署和自动同步的主要内容,如果未能解决你的问题,请参考以下文章

运维与自动化系列④自动化部署基础与git

持续集成与自动化部署 - gitlab部署

如何利用jenkins git shell脚本自动部署服务

Gitlab+jenkins持续集成+自动化部署

Git----使用WebHook实现代码自动部署

windowlinux系统与linux服务器之间使用svn同步及自动部署代码的方法