aboutsummaryrefslogtreecommitdiff
path: root/doc/tips/laptop_wiki_with_git_extended.mdwn
blob: f5bf9e3153d9f66580324160e0a3fc873c4b6d2d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
[[!meta title="Laptop Ikiwiki extended"]]
[[!meta date="2008-03-03 08:21:04 -0500"]]

I have (at least) three different hosts, `laptop`, `gitserver`, and `webserver`.

1. I started by following [[/tips/laptop_wiki_with_git]] to create 
a bare repo on `gitserver`, and clone that to a workingdir on  gitserver.

  On the laptop clone gitserver:repo /working/dir 

  Next create a setup file for the laptop with 

        gitorigin_branch=> "",
        git_wrapper => "/working/dir/.git/hooks/post-commit",
    
  At this point, assuming you followed page above, and not my hasty summary, 

        git commit -a 

  should rebuild the output of your wiki.
   
2. Now create a setup file for the server (I call it server.setup).

        gitorigin_branch=> "origin",
        git_wrapper => "/repo/wiki.git/hooks/post-update.ikiwiki"
       
  Note the non-standard and bizzare name of the hook.   

  edit /repo/wiki.git/hooks/post-update so that it looks something like

        /repo/wiki.git/hooks/post-update.ikiwiki
        rsync -cavz /home/me/public_html/* webserver:/destdir

  Run 

        ikiwiki --setup server.setup

Now in principle when you run git push on the laptop, the git server will 
first do its "regular" thing and update ~/public_html (in my case) and 
then rsync it onto the webserver.  For this to work, you need passwordless 
ssh or something like it.

[[DavidBremner]]