GIT服務器項目部署和自動同步

1.一、初始化Git倉庫
首先咱們選定一個目錄做爲Git倉庫,假定是/home/data/share/share.git,在/home/data/目錄下輸入命令:nginx

$ 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:git

$ chown -R git:git  share.git

 

1.2 配置自動同步web

$ 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指定的項目目錄vim

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

 

 Windows客戶端: bash

git clone git@39.107.77.206:/home/data/share/share.git
相關文章
相關標籤/搜索