summaryrefslogtreecommitdiff
path: root/doc/preferred_content.mdwn
Commit message (Collapse)AuthorAge
* securehash matchingGravatar Joey Hess2017-02-27
| | | | | | | Added --securehash option to match files using a secure hash function, and corresponding securehash preferred content expression. This commit was sponsored by Ethan Aubin.
* Support --metadata field<number, --metadata field>number etc to match ranges ↵Gravatar Joey Hess2016-02-27
| | | | | | | of numeric values. Similarly (well, for free), support preferred content expressions like metadata=field<number and metadata=field>number
* add "nothing" to preferred content DSLGravatar Joey Hess2016-02-02
| | | | | Same as "not anything"; will be particularly useful in annex.largefiles gitattributes.
* move preferred content terminals docs to man pageGravatar Joey Hess2016-01-22
|
* doc/*.mdwn: Minor fixes (typos, letter case)Gravatar Øyvind A. Holm2015-07-26
|
* reorgGravatar Joey Hess2015-06-16
|
* clarifyGravatar Joey Hess2015-06-16
|
* Revert "box"Gravatar Joey Hess2015-06-16
| | | | This reverts commit 29b6bd44dd1011cbaadc39d68ec460922e3c3f73.
* boxGravatar Joey Hess2015-06-16
|
* fmtGravatar Joey Hess2015-06-16
|
* typographyGravatar Joey Hess2015-06-16
|
* typographyGravatar Joey Hess2015-06-16
|
* fmtGravatar Joey Hess2015-06-16
|
* fmtGravatar Joey Hess2015-06-16
|
* rewrite so it's understandable without knowing about the related ↵Gravatar Joey Hess2015-06-16
| | | | command-line options
* Added new "anything" preferred content expression, which matches all ↵Gravatar Joey Hess2015-06-16
| | | | versions of all files.
* updateGravatar Joey Hess2015-06-16
|
* More typo fixes in doc/*.mdwnGravatar Øyvind A. Holm2015-04-17
|
* fix doc problem noticed in a forum questionGravatar Joey Hess2015-02-25
|
* groupwanted: New command to set the groupwanted preferred content expression.Gravatar Joey Hess2015-02-06
|
* tweakGravatar Joey Hess2015-01-16
|
* document "unused" in preferred content expressionsGravatar Joey Hess2015-01-16
|
* (no commit message)Gravatar madduck2014-04-07
|
* „.“ does work with the most current version (5.20140320~bpo70+1).Gravatar http://ypid.wordpress.com/2014-04-01
|
* Typeset command in markdown code mode.Gravatar http://ypid.wordpress.com/2014-03-31
|
* „.“ does not seem to be a valid alias for here in current version ↵Gravatar http://ypid.wordpress.com/2014-03-31
| | | | (5.20140306~bpo70+1).
* update for required contentGravatar Joey Hess2014-03-29
|
* Improve behavior when unable to parse a preferred content expression ↵Gravatar Joey Hess2014-03-20
| | | | | | | (thanks, ion). Fall back to "present" as the preferred conent expression, which will not result in any content movement.
* note on version skew; mini-changelogGravatar Joey Hess2014-03-19
|
* doc updates for groupwantedGravatar Joey Hess2014-03-15
|
* wordingGravatar Joey Hess2014-03-14
|
* layoutGravatar Joey Hess2014-03-14
|
* layoutGravatar Joey Hess2014-03-14
|
* "standard" can now be used as a first-class keyword in preferred content ↵Gravatar Joey Hess2014-03-14
| | | | | | | | | | | expressions. For example "standard or (include=otherdir/*)" or even "not standard" Note that the implementation avoids any potential for loops (if a standard preferred content expression itself mentioned standard). This commit was sponsored by Jochen Bartl.
* remove dangling parenGravatar Joey Hess2014-03-12
|
* explicitly include unused files in backup and incremental backupGravatar Joey Hess2014-01-23
| | | | include=* does not match unused files, which have no associated file.
* assistant unused file handlingGravatar Joey Hess2014-01-22
| | | | | | | | | | | | | | | | | | | Make sanity checker run git annex unused daily, and queue up transfers of unused files to any remotes that will have them. The transfer retrying code works for us here, so eg when a backup disk remote is plugged in, any transfers to it are done. Once the unused files reach a remote, they'll be removed locally as unwanted. If the setup does not cause unused files to go to a remote, they'll pile up, and the sanity checker detects this using some heuristics that are pretty good -- 1000 unused files, or 10% of disk used by unused files, or more disk wasted by unused files than is left free. Once it detects this, it pops up an alert in the webapp, with a button to take action. TODO: Webapp UI to configure this, and also the ability to launch an immediate cleanup of all unused files. This commit was sponsored by Simon Michael.
* benchmarked numcopies .gitattributes in preferred contentGravatar Joey Hess2014-01-21
| | | | | | | | | | | Checking .gitattributes adds a full minute to a git annex find looking for files that don't have enough copies. 2:25 increasts to 3:27. I feel this is too much of a slowdown to justify making it the default. So, exposed two versions of the preferred content expression, a slow one and a fast but approximate one. I'm using the approximate one in the default preferred content expressions to avoid slowing down the assistant.
* Add and use numcopiesneeded preferred content expression.Gravatar Joey Hess2014-01-20
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Add numcopiesneeded preferred content expression. * Client, transfer, incremental backup, and archive repositories now want to get content that does not yet have enough copies. This means the asssistant will make copies of files that don't yet meet the configured numcopies, even to places that would not normally want the file. For example, if numcopies is 4, and there are 2 client repos and 2 transfer repos, and 2 removable backup drives, the file will be sent to both transfer repos in order to make 4 copies. Once a removable drive get a copy of the file, it will be dropped from one transfer repo or the other (but not both). Another example, numcopies is 3 and there is a client that has a backup removable drive and two small archive repos. Normally once one of the small archives has a file, it will not be put into the other one. But, to satisfy numcopies, the assistant will duplicate it into the other small archive too, if the backup repo is not available to receive the file. I notice that these examples are fairly unlikely setups .. the old behavior was not too bad, but it's nice to finally have it really correct. .. Almost. I have skipped checking the annex.numcopies .gitattributes out of fear it will be too slow. This commit was sponsored by Florian Schlegel.
* sync --content: New option that makes the content of annexed files be ↵Gravatar Joey Hess2014-01-19
| | | | | | | | | | | | | | | | | | | | | | | | | | | | transferred. Similar to the assistant, this honors any configured preferred content expressions. I am not entirely happpy with the implementation. It would be nicer if the seek function returned a list of actions which included the individual file gets and copies and drops, rather than the current list of calls to syncContent. This would allow getting rid of the somewhat reundant display of "sync file [ok|failed]" after the get/put display. But, do that, withFilesInGit would need to somehow be able to construct such a mixed action list. And it would be less efficient than the current implementation, which is able to reuse several values between eg get and drop. Note that currently this does not try to satisfy numcopies when getting/putting files (numcopies are of course checked when dropping files!) This makes it like the assistant, and unlike get --auto and copy --auto, which do duplicate files when numcopies is not yet satisfied. I don't know if this is the right decision; it only seemed to make sense to have this parallel the assistant as far as possible to start with, since I know the assistant works. This commit was sponsored by Øyvind Andersen Holm.
* Allow --all to be mixed with matching options like --copies and --in (but ↵Gravatar Joey Hess2014-01-18
| | | | not --include and --exclude).
* clarify that $client is a shorthand used on this page, and not part of ↵Gravatar Joey Hess2014-01-15
| | | | preferred content expression syntax
* add --want-get and --want-drop optionsGravatar Joey Hess2013-10-28
| | | | | New --want-get and --want-drop options which can be used to test preferred content settings. For example, "git annex find --in . --want-drop"
* The "git annex content" command is renamed to "git annex wanted".Gravatar Joey Hess2013-10-28
|
* update to use enableremote for changing preferreddir settingsGravatar Joey Hess2013-07-16
|
* content: New command line way to view and configure a repository's preferred ↵Gravatar Joey Hess2013-05-25
| | | | content settings.
* per-IA-item content directoriesGravatar Joey Hess2013-04-25
|
* Automatically register public urls for files uploaded to the Internet Archive.Gravatar Joey Hess2013-04-25
|
* Internet Archive!Gravatar Joey Hess2013-04-25
| | | | | | | * Add public repository group. * webapp: Can now set up Internet Archive repositories. TODO: Enabling IA repositories.
* better archive directory handlingGravatar Joey Hess2013-04-06
| | | | | Adjust preferred content expressions so that content in archive directories is preferred until it has reached an archive or smallarchive repository.