Lines Matching refs:annex

1 …solve [[this question|forum/ikiwiki_and_big_files]]: ikiwiki should support git-annex repositories.
3 I am not sure how this would work, but from my POV, it should do a `git annex get` when new commits…
5 …hardlinked between the two repos, but it seems [git-annex doesn't support that yet](http://git-ann…
8 > for [[security]], but git-annex relies on symlinks (unless you're in
16 …m.kalleswork.net) which uses the [[plugins/contrib/album]] plugin and git-annex to manage its file…
20 1. setup a git annex remote in `$srcdir`
25 git annex init
26 git annex direct
28 3. configure files to be considered by git-annex (those will be not committed into git directly):
30 git config annex.largefiles 'largerthan=100kb and not (include=*.mdwn or include=*.txt)'
32 4. make the bare repository (the remote of `$srcdir`) ignored by git-annex:
35 git config remote.origin.annex-ignore true
36 git config remote.origin.annex-sync false
38 …y, which is annoying, but it's important because we don't want to see git-annex stuff in the bare …
40 …wing crappy plugin to make commits work again and make sure the right files are added in git-annex:
69 `git annex add --auto`;
70 `git annex sync`;
99 …feature combined with the `hardlink` option to deploy the git-annex'd files. Then git-annex is sep…
101 …t-annex. This could potentially be expanded to sync content to the final checkout properly, avoidi…
109 git clone source.git source.annex
110 cd source.annex
111 git annex direct
113 git annex group . transfer
114 git remote add annex ../source.annex
115 git annex sync annex
118 Make sure the `hardlink` setting is enabled, and add the annex as an underlay, in `ikiwiki.setup`:
123 - /home/w-anarcat/source.annex
131 echo "moving big files to annex repository..."
132 git annex move --to annex
142 …interface which will fail (at best) and (at worst) add big files into git-annex (or vice-versa, no…
144 … to make the original idea above work properly (ie. having a separate git-annex repo in direct mod…
201 echo "moving big files to annex repository..."
202 git annex copy --to annex
203 git annex sync annex
206 …s necessary, but I remember it destroyed all files in my repo because git-annex synced against the…
208 Then the `annex` repo is just a direct clone of the source.git:
212 git clone --shared source.git annex
213 cd annex
214 git annex direct
216 git remote add annex ../annex
224 - /home/w-anarcat/annex
229 …low git-annex-shell to run at all. Also, the `--shared` option will [make git-annex use hardlinks …
231 …he annexed files get skipped again now. :(</del> Sorry for the noise, the annex repo wasn't in dir…
237 > attractive solution to several use cases, and git annex support is in the