diff options
Diffstat (limited to 'ikiwiki/Makefile')
-rw-r--r-- | ikiwiki/Makefile | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/ikiwiki/Makefile b/ikiwiki/Makefile index 7fb2cc6..a9499b1 100644 --- a/ikiwiki/Makefile +++ b/ikiwiki/Makefile @@ -16,6 +16,21 @@ web: @ikiwiki --setup ikiwiki.setup + @chmod +x bin/* web_deploy: + #git push web + #git annex sync @rsync -avz --delete www/ blog:/var/sites/blog/www/ + +post_update: + git config receive.denyCurrentBranch ignore + cd .git/hooks && ln -sf ../../bin/post-update + +post_receive: + git config receive.denyCurrentBranch ignore + cd .git/hooks && ln -sf ../../bin/post-receive + +whoami: + git config user.name "User" + git config user.email user@example.org |