]> sipb.mit.edu Git - ikiwiki.git/blob - doc/rcs/git.mdwn
web commit by bremner: editorializing re: the information on using git being spread...
[ikiwiki.git] / doc / rcs / git.mdwn
1 [[meta title="Git"]]
2
3 [Git][git] is a distributed revison control system originally developed for
4 the Linux kernel. Ikiwiki supports storing a wiki in git.
5
6 [git]: http://git.or.cz/
7
8 Ikiwiki can run as a `post-update` hook to update a wiki whenever commits
9 come in. When running as a [[cgi]] with Git, ikiwiki automatically
10 commits edited pages, and uses the Git history to generate the
11 [[RecentChanges]] page.
12
13 ## git repository setup
14
15 The suggested setup for git is a set of repositories setup like a
16 shallow, single level tree, with a bare repository (meaning that it
17 does not have a working tree checked out) at the root, and various
18 working clones (with working directories) as leaf nodes.  The root
19 (bare) repository is meant to be pushed to and pulled from the various
20 working clones. 
21
22 ![Git repository relationships](http://people.debian.org/~srivasta/ikiwiki_git.png)
23
24 One of the leaf node clone repositories is special; it has working
25 directory which is used to compile the wiki from, and is also used by the
26 [[cgi]] to commit changes made via the web interface. It is special
27 since the `post-commit` hook for the bare root repository is used to
28 trigger an update of this repository, and then an ikiwiki refresh
29 updates the published  wiki itself.
30
31 The other (optional) leaf node repositories are meant for you to work
32 on, and commit to, changes should then be pushed to the bare root
33 repository.  In theory, you could work on the same leaf node repository
34 that ikiwiki uses to compile the wiki from, and the [[cgi]] commits
35 to, as long as you ensure that permissions and ownership don't hinder
36 the working of the [[cgi]]. This can be done, for example, by using
37 ACL's, in practice, it is easier to just setup separate clones for
38 yourself.
39
40 So, to reiterate, when using Git, you probably want to set up three
41 repositories:
42
43 * The root repository. This should be a bare repository (meaning that it does not have a working tree checked out), which the other repositories will push to/pull from.  It is a bare repository, since there are problems pushing to a repository that has a working directory. This is called _repository_ in [[ikiwiki-makerepo]]'s  manual page. Nominally, this bare repository has a `post-commit` hook that would change directory to the ikiwiki leaf node repository below (the working directory for ikiwiki), do a _git pull_, and refresh ikiwiki to regenerate the wiki with any new content.
44 * The second repository is a clone of the bare root repository, and has a working tree which is used as ikiwiki's srcdir for compiling the wiki. **Never** push to this repository. When running as a [[cgi]], the changes are committed to this repository, and pushed to the master repository above. This is called _srcdir_ in [[ikiwiki-makerepo]]'s manual page.
45 * The other (third, fourth, fifth, sixth -- however many pleases you) repositories are also clones of the bare root repository above -- and these have a working directory for you to work on. Use either the `git` transport (if available), or `ssh`. These repositories may be on remote machines, your laptop, whereever you find convenient to hack on your wiki. Any new content should be pushed to the bare master repository when you are ready to publish it, and then the post-commit hook of the bare repository will ensure that the ikiwiki's source directory is updated, and the ikiwiki refreshed with the new content.
46
47 Using three or more of repositories isn't the most obvious set up, but it works the best for typical ikiwiki use.  [[tips/Laptop_wiki_with_git]] describes a different way to set up ikiwiki and git.
48
49 It is **paramount** that you **never** push to the non-bare repository
50 ([this FAQ entry explains why](http://git.or.cz/gitwiki/GitFaq#head-b96f48bc9c925074be9f95c0fce69bcece5f6e73)).
51 Instead, clone the bare repository as mentioned above, and push **only** to the bare repository.
52
53 The ikiwiki `post-commit` hook should be put in the bare repository.
54
55 ### Ten steps to get rich using git as your ikiwiki SCM  
56
57 1. `mkdir -p /path/to/repository && cd /path/to/repository`
58 2. `git --bare init --shared`
59 3. `mkdir -p /path/to/clone0 && cd  /path/to/clone0`
60 4. `git clone /path/to/repository`
61 5. `echo /.ikiwiki > .gitignore`
62 6. `echo recentchanges >> .gitignore`
63 7. `git add .gitignore`
64 8. Now, populate your wiki. You could us `cp` to copy over files, use you favourite editor to create files and `git add` them, or you could import a wiki repository from another VCS using `git-svnimport`, `git-archimport`, or `git-cvsimport`. Make sure the permissions are correct in order for [[cgi]] to commit here (consider actually cloning another reposotory for yourself, on this or on another machine). Use `git add` to add these files to the index.
65 9. `git push`
66 10. Profit.
67
68 [[ikiwiki-makerepo]] can automate setting this up for the common case
69 where there is no pre-existing wiki.
70
71 ## git repository with multiple committers
72
73 It can be tricky to get the permissions right to allow multiple people to
74 commit to an ikiwiki git repository. As the [[security]] page mentions,
75 for a secure ikiwiki installation, only one person should be able to write
76 to ikiwiki's srcdir. When other committers make commits, their commits
77 should go to the bare repository, which has a `post-update` hook that uses
78 ikiwiki to pull the changes to the srcdir.
79
80 One setup that will work is to put all committers in a group (say,
81 "ikiwiki"), and use permissions to allow that group to commit to the bare git
82 repository. Make both the post-update hook and ikiwiki.cgi be setgid
83 to the group, as well as suid to the user who admins the wiki. The
84 `wrappergroup` [[setup_file_option|usage]] can be used to make the wrappers
85 be setgid to the right group. Then the srcdir, including its git
86 repository, should only be writable by the wiki's admin, and *not* by the
87 group. Take care that ikiwiki uses a umask that does not cause files in
88 the srcdir to become group writable. (umask 022 will work.)