aboutsummaryrefslogtreecommitdiff
path: root/doc/todo/git-annex_support.mdwn
diff options
context:
space:
mode:
authorhttps://id.koumbit.net/anarcat <https://id.koumbit.net/anarcat@web>2015-03-28 03:45:09 -0400
committeradmin <admin@branchable.com>2015-03-28 03:45:09 -0400
commit011b2af8c5e8e19361307424742c099215c9ca89 (patch)
treed73623014f97acc5a7b8758bfef5eda1f9f80a54 /doc/todo/git-annex_support.mdwn
parentbff9a883768038c0cd6cd3aca46a637ac6767898 (diff)
downloadikiwiki-011b2af8c5e8e19361307424742c099215c9ca89.tar
ikiwiki-011b2af8c5e8e19361307424742c099215c9ca89.tar.gz
another attempt
Diffstat (limited to 'doc/todo/git-annex_support.mdwn')
-rw-r--r--doc/todo/git-annex_support.mdwn34
1 files changed, 34 insertions, 0 deletions
diff --git a/doc/todo/git-annex_support.mdwn b/doc/todo/git-annex_support.mdwn
index 78219625b..afec8c6b8 100644
--- a/doc/todo/git-annex_support.mdwn
+++ b/doc/todo/git-annex_support.mdwn
@@ -101,3 +101,37 @@ An alternative implementation, which remains to be detailed but is mentionned in
Also note that ikiwiki-hosting has a [patch waiting](https://ikiwiki-hosting.branchable.com/todo/git-annex_support) to allow pushes to work with git-annex. This could potentially be expanded to sync content to the final checkout properly, avoiding some of the problems above (esp. wrt to non-annex bare repos).
Combined with the [[underlay]] feature, this could work very nicely indeed... --[[anarcat]]
+
+Here's an attempt:
+
+<pre>
+cd /home/user
+git clone source.git source.annex
+cd source.annex
+git annex direct
+cd ../source.git
+git annex group . transfer
+git remote add annex ../source.annex
+git annex sync annex
+</pre>
+
+Make sure the `hardlink` setting is enabled, and add the annex as an underlay, in `ikiwiki.setup`:
+
+<pre>
+hardlink: 1
+add_underlays:
+- /home/w-anarcat/source.annex
+</pre>
+
+Then moving files to the underlay is as simple as running this command in the bare repo:
+
+<pre>
+#!/bin/sh
+
+echo "moving big files to annex repository..."
+git annex move --to annex
+</pre>
+
+I have added this as a hook in `$HOME/source.git/hooks/post-receive` (don't forget to `chmod +x`).
+
+The problem with the above is that the underlay wouldn't work: for some reason it wouldn't copy those files in place properly. Maybe it's freaking out because it's a full copy of the repo... My solution was to make the source repository itself a direct repo, and then add it as a remote to the bare repo. --[[anarcat]]