summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README24
1 files changed, 22 insertions, 2 deletions
diff --git a/README b/README
index 92820c0..f94aedc 100644
--- a/README
+++ b/README
@@ -24,10 +24,30 @@ directories without warning, do this:
Source
------
-These routines are available at http://source.jones.dk/ as a GIT archive - like
-this:
+These routines are available at http://source.jones.dk/ as a GIT repository.
+Pull it like this:
git clone http://source.jones.dk/ikiwiki.git
+To publish your own forked repository through web, you need to create a special
+public repository that you "push" your changes into from your private working
+repository (the --all option is rewuired only initially) - like this:
+
+ GIT_DIR=public_dir/repository_name.git git --bare init --shared
+ chmod +x public_dir/repository_name.git/hooks/post-update
+ git push --all
+
+To resyncronize an older fork of the repository, re-applying local changes on
+top of the newer upstream GIT source, do like this from within your local
+forked repository:
+
+ git remote add ikiwiki http://source.jones.dk/ikiwiki.git
+ git fetch ikiwiki
+ git rebase ikiwiki/master
+
+
+----
+
+References:
[1] http://ikiwiki.info/