git-hooks

Git hooks for my repositories
git clone https://git.tronto.net/git-hooks
Download | Log | Files | Refs | README

Makefile (444B)


      1 all: push
      2 	ssh git@tronto.net /home/git/BIN/post-receive-stagit all
      3 
      4 push:
      5 	ssh git@tronto.net mkdir -p BIN FILES
      6 	scp post-receive-stagit copy-hook git@tronto.net:BIN/
      7 	scp bottom.html favicon.png logo.png style.css git@tronto.net:FILES/
      8 	ssh git@tronto.net /home/git/BIN/copy-hook
      9 
     10 index: push
     11 	ssh git@tronto.net /home/git/BIN/post-receive-stagit index
     12 
     13 clean:
     14 	ssh git@tronto.net rm -r FILES/* BIN/*
     15 
     16 .PHONY: all clean index push updateall