소스 검색

Copy post-receive hook

From the old raw git repository
DricomDragon 5 년 전
부모
커밋
211b0955e7
1개의 변경된 파일14개의 추가작업 그리고 0개의 파일을 삭제
  1. 14 0
      undeployed/scripts/deploy-local-httpd.sh

+ 14 - 0
undeployed/scripts/deploy-local-httpd.sh

@@ -0,0 +1,14 @@
+#!/bin/bash
+echo "[post-receive] Beginning check and deploy script :"
+while read oldrev newrev ref
+do
+    if [[ $ref =~ .*/master$ ]];
+    then
+	echo "[post-receive] Master ref received. Deploying master branch to production..."
+        git --work-tree=/var/www/jovian --git-dir=/home/gituser/StaticJovian.git checkout master -f
+    else
+	echo "[post-receive] Ref $ref successfully received."
+	echo "[post-receive] Doing nothing: only the master branch may be deployed on this server."
+    fi
+done
+echo "[post-receive] End of script."