GIT伺服器專案部署和自動同步
阿新 • • 發佈:2018-12-17
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