summaryrefslogtreecommitdiff
path: root/Upgrade
Commit message (Collapse)AuthorAge
* Bugfix: Keys could be received into v1 annexes from v2 annexes, via v1 ↵Gravatar Joey Hess2011-03-28
| | | | git-annex-shell. This results in some oddly named keys in the v1 annex. Recognise and fix those keys when upgrading, instead of crashing.
* responseGravatar Joey Hess2011-03-27
|
* typoGravatar Joey Hess2011-03-21
|
* upgrade messagesGravatar Joey Hess2011-03-21
|
* don't crash on upgrade if .git-annex DNEGravatar Joey Hess2011-03-19
|
* set version before running operation that can commitGravatar Joey Hess2011-03-16
|
* add explicit upgrade commandGravatar Joey Hess2011-03-16
|
* use queue when upgrading, flushing every so oftenGravatar Joey Hess2011-03-16
| | | | | | | | | | | | | | | | | Added a cheap way to query the size of a queue. runQueueAt is not the default yet only because there may be some code that expects to be able to queue some suff, do something else, and run the whole queue at the end. 10240 is an arbitrary size for the queue. If we assume annexed filenames are between 10 and 255 characters long, then the queue will build up between 100kb and 2550kb long commands. The max command line length on linux is somewhere above 20k, so this is a fairly good balance -- the queue will buffer only a few megabytes of stuff and a minimal number of commands will be run by xargs. Also, insert queue items strictly, this should save memory.
* bare repo upgrade supportGravatar Joey Hess2011-03-16
|
* don't use queue when upgradingGravatar Joey Hess2011-03-16
| | | | In a large repo, just queuing the things to do used a lot of ram.
* improve upgradeGravatar Joey Hess2011-03-16
|
* upgrades seem to fully workGravatar Joey Hess2011-03-16
|
* v1 -> v2 upgrade partially workingGravatar Joey Hess2011-03-16
| | | | still need to move location log files, and auto-commit
* upgrade groundworkGravatar Joey Hess2011-03-16
pulled in old versions of functions for working with keys Wrote a parser from old key filenames to new keys.