summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* releasing version 3.201109283.20110928Gravatar Joey Hess2011-09-28
|
* fooGravatar Joey Hess2011-09-28
|
* typoGravatar Joey Hess2011-09-28
|
* update test suite for smarter unusedGravatar Joey Hess2011-09-28
|
* enable short-circuiting optimisatonsGravatar Joey Hess2011-09-28
|
* refine new unused codeGravatar Joey Hess2011-09-28
| | | | | | | | | Fixed the laziness space leak, so it runs in 60 mb or so again. Slightly faster due to using Data.Set.difference now, although this also makes it use slightly more memory. Also added display of the refs being checked, and made unused --from also check all refs for things in the remote.
* make unused check branches and tags tooGravatar Joey Hess2011-09-28
| | | | needs time and space optimisation
* fixGravatar Joey Hess2011-09-28
|
* refactor catfile codeGravatar Joey Hess2011-09-28
| | | | split into generic IO code, and a thin Annex wrapper
* golfGravatar Joey Hess2011-09-28
|
* use FileModeGravatar Joey Hess2011-09-28
|
* Merge branch 'master' into unusedfullGravatar Joey Hess2011-09-28
|\
| * add ls-tree interfaceGravatar Joey Hess2011-09-28
| | | | | | | | This parser should be fast. I hope.
| * use a foldrGravatar Joey Hess2011-09-28
| | | | | | | | Should be faster here.
| * golfingGravatar Joey Hess2011-09-28
| |
| * tweakGravatar Joey Hess2011-09-25
| |
| * mention that add --force adds ignored filesGravatar Joey Hess2011-09-25
| |
| * include --bindir in all cabal install examplesGravatar Joey Hess2011-09-25
| |
* | refactorGravatar Joey Hess2011-09-23
| |
* | documentation/warning message update for future featureGravatar Joey Hess2011-09-23
|/
* one more hlintGravatar Joey Hess2011-09-20
|
* go go gadget hlintGravatar Joey Hess2011-09-20
|
* pull out pure codeGravatar Joey Hess2011-09-20
|
* bugfixGravatar Joey Hess2011-09-20
| | | | | | Different keys can have the same size, so can't make a Set of the sizes. This version actually runs faster yet, too..
* status: Massively sped up; remove --fast mode.Gravatar Joey Hess2011-09-20
| | | | | | | | | | Using Sets is the right thing; they have constant size lookup like my SizeList, and logn insertation, which beats nub to death. Runs faster than --fast mode did before, and gives accurate counts. 13 seconds total runtime with a warm cache in a repository with 40 thousand keys.
* status: In --fast mode, all status info is displayed now; but some of it is ↵Gravatar Joey Hess2011-09-20
| | | | only approximate, and is marked as such.
* simplifyGravatar Joey Hess2011-09-20
|
* convert Token to have separate constructors for each peice of syntaxGravatar Joey Hess2011-09-20
|
* Added a commentGravatar http://joey.kitenet.net/2011-09-19
|
* Merge branch 'master' of ssh://git-annex.branchable.comGravatar Joey Hess2011-09-19
|\
| * Added a commentGravatar http://joey.kitenet.net/2011-09-19
| |
* | some of these are now doneGravatar Joey Hess2011-09-19
| |
| * Added a commentGravatar http://joey.kitenet.net/2011-09-19
|/
* typoGravatar Joey Hess2011-09-19
|
* tweakGravatar Joey Hess2011-09-19
|
* clarify wordingGravatar Joey Hess2011-09-19
|
* special case for --in .Gravatar Joey Hess2011-09-19
| | | | | | Do not need to check the location log in this case, can just check inAnnex. This is both an optimisation and perhaps a correctness measure (fsck --in . should fsck files even if the location log is damaged.)
* reorgGravatar Joey Hess2011-09-19
|
* golfGravatar Joey Hess2011-09-19
|
* refactorGravatar Joey Hess2011-09-18
|
* fix memory leakGravatar Joey Hess2011-09-18
| | | | | | | | | | | | | | | | filterM is not a good idea if you were streaming in a large list of files. Fixing this memory leak that I introduced earlier today was a PITA because to avoid the filterM, it's necessary to do the filtering only after building up the data structures like BackendFile, and that means each separate data structure needs it own function to apply the filter, at least in this naive implementation. There is also a minor performance regression, when using copy/drop/get/fsck with a filter, git is now asked to look up attributes for all files, since that now comes before the filter is applied. This is only a very minor thing, since getting the attributes is very fast and --exclude was probably not typically used to speed it up.
* golfing with curryGravatar Joey Hess2011-09-18
|
* probably better to error on unknown tokenGravatar Joey Hess2011-09-18
|
* update docsGravatar Joey Hess2011-09-18
|
* make find show files meeting limits, even when not presentGravatar Joey Hess2011-09-18
| | | | | | | | | find: Rather than only showing files whose contents are present, when used with --exclude --copies or --in, displays all files that match the specified conditions. Note that this is a behavior change for find --exclude! Old behavior can be gotten with find --in . --exclude=...
* --copies=N can be used to make git-annex only operate on files with the ↵Gravatar Joey Hess2011-09-18
| | | | | | specified number of copies. (And --not --copies=N for the inverse.)
* add --in limitGravatar Joey Hess2011-09-18
|
* rework annex-ignore handlingGravatar Joey Hess2011-09-18
| | | | | | | | Only one place need to filter the list of remotes for ignored remotes: keyPossibilities. Make the full list available to everything else. This allows getting rid of the special case handing for --from and --to to make ignored remotes not be ignored with those options.
* update man page for file matching optionsGravatar Joey Hess2011-09-18
| | | | (--in is not yet implemented)
* add --and --or --not -( and -)Gravatar Joey Hess2011-09-18
| | | | | | | | I dislike -( and -), but without using a different option parser, can't easily use bare parens. --and and --or will become more useful once there are more interesting limits than --exclude