码迷,mamicode.com
首页 > 其他好文 > 详细

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

时间:2018-10-25 15:40:07      阅读:164      评论:0      收藏:0      [点我收藏+]

标签:share   同步   bin   ini   仓库   chm   1.3   pre   命令   

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 git@39.107.77.206:/home/data/share/share.git

 

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

标签:share   同步   bin   ini   仓库   chm   1.3   pre   命令   

原文地址:https://www.cnblogs.com/haozhen/p/9849722.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!