Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | git-annex-shell: Added notifychanges command. | Joey Hess | 2014-04-05 |
| | | | | | | | | | | This will be used by the remote-daemon to quickly tell when changes have been pushed from some other repository into a ssh remote. Adjusted the remote-daemon protocol to communicate changed shas, rather than git branch refs. This way, it can easily check if a sha is new. This commit was sponsored by Carlos Trijueque Albarran. | ||
* | Added a comment: Rolling hash chunking | http://johan.kiviniemi.name/ | 2014-04-04 |
| | |||
* | update | Joey Hess | 2014-04-03 |
| | |||
* | update | Joey Hess | 2014-04-03 |
| | |||
* | big todo | Joey Hess | 2014-04-03 |
| | |||
* | update | Joey Hess | 2014-04-03 |
| | |||
* | reload | Joey Hess | 2014-04-03 |
| | |||
* | add design for git-remote-daemon | Joey Hess | 2014-04-03 |
| | |||
* | windows fix try 2 | Joey Hess | 2014-04-02 |
| | |||
* | update roadmap month | Joey Hess | 2014-04-02 |
| | |||
* | poll vote (Google Drive) | 216.115.165.4 | 2014-03-21 |
| | |||
* | poll vote (Google Drive) | 131.130.79.56 | 2014-03-21 |
| | |||
* | fix up old comments that used format=txt, which is no longer enabled | Joey Hess | 2014-03-20 |
| | |||
* | link to another place this could be used, perhaps | Joey Hess | 2014-03-18 |
| | |||
* | link to another item | Joey Hess | 2014-03-18 |
| | |||
* | poll vote (/sdcard/annex) | 192.171.33.111 | 2014-03-17 |
| | |||
* | poll vote (/sdcard/annex) | 93.128.10.19 | 2014-03-16 |
| | |||
* | poll vote (DCIM directory (photos and videos only)) | 78.53.214.75 | 2014-03-16 |
| | |||
* | poll vote (/sdcard/annex) | 194.197.235.109 | 2014-03-16 |
| | |||
* | Added a comment | http://joeyh.name/ | 2014-03-15 |
| | |||
* | Added a comment: convenient way to query metadata? | bremner | 2014-03-15 |
| | |||
* | removed | bremner | 2014-03-15 |
| | |||
* | Added a comment: How to read metadata conveniently? | bremner | 2014-03-15 |
| | |||
* | implemntation plan | Joey Hess | 2014-03-13 |
| | |||
* | doubled speed with esqeleto | Joey Hess | 2014-03-13 |
| | |||
* | fixed slow query on normalized table; still 10x slower than current .map files | Joey Hess | 2014-03-13 |
| | |||
* | add | Joey Hess | 2014-03-12 |
| | |||
* | poll vote (Tahoe-LAFS) | 166.70.207.2 | 2014-03-11 |
| | |||
* | update roadmap month | Joey Hess | 2014-03-05 |
| | |||
* | pre-commit-annex hook script to automatically extract metadata from lots of ↵ | Joey Hess | 2014-03-02 |
| | | | | | | | | | | | | | | | | | | types of files Using the extract(1) program to do the heavy lifting. Decided to make git-annex run pre-commit-annex when committing. Since git-annex pre-commit also runs it, it'll be run when git commit is run too, via the pre-commit hook. This basically gives back the pre-commit hook that git-annex took away. The implementation avoids repeatedly looking for the hook script when the assistant is running and committing repeatedly; only checks if the hook is available once. To make the script simpler, made git-annex metadata -s field?=value only set a field when it's not already got a value. This commit was sponsored by bak. | ||
* | update | Joey Hess | 2014-03-02 |
| | |||
* | update | Joey Hess | 2014-03-02 |
| | |||
* | metadata: FIeld names are now case insensative. | Joey Hess | 2014-02-25 |
| | |||
* | Added a comment | https://www.google.com/accounts/o8/id?id=AItOawkSq2FDpK2n66QRUxtqqdbyDuwgbQmUWus | 2014-02-25 |
| | |||
* | Added a comment | https://www.google.com/accounts/o8/id?id=AItOawkSq2FDpK2n66QRUxtqqdbyDuwgbQmUWus | 2014-02-25 |
| | |||
* | update | Joey Hess | 2014-02-24 |
| | |||
* | more todos | Joey Hess | 2014-02-23 |
| | |||
* | Merge branch 'master' of ssh://git-annex.branchable.com | Joey Hess | 2014-02-23 |
|\ | |||
* | | annex.genmetadata can be set to make git-annex automatically set metadata ↵ | Joey Hess | 2014-02-23 |
| | | | | | | | | (year and month) when adding files | ||
| * | Added a comment: Already existing metadata implementation | https://www.google.com/accounts/o8/id?id=AItOawm3vKzS4eOWYpKMoYXqMIjNsIg_nYF-loU | 2014-02-22 |
|/ | |||
* | etoolong | Joey Hess | 2014-02-22 |
| | |||
* | Merge branch 'master' of ssh://git-annex.branchable.com | Joey Hess | 2014-02-22 |
|\ | |||
* | | views: add automatically constructed file location metadata | Joey Hess | 2014-02-22 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | When constructing views, metadata is available about the location of the file in the view's reference branch. Allows incorporating parts of the directory hierarchy in a view. For example `git annex view tag=* podcasts/=*` makes a view in the form tag/showname. Performance impact: I benchmarked git annex view tag=* in the conference proceedings repo to take 6.459s before this change, and 6.544s after. FWIW, I considered making the syntax for this be podcasts/*, which might be easier for the user to learn. However, I think it's not as good: * The user has to then juggle two different syntaxes, and podcasts/* will be expanded by the shell so they also need to quote it, while podcasts/=* is unlikely to be expanded by the shell. * It would allow for things like podcasts/*/* and *.mp3 which do not map well into views. This commit was sponsored by Aurélien Pinceaux. | ||
| * | add missing traillink, so that we don't jump from disaster recovery to ↵ | https://id.koumbit.net/anarcat | 2014-02-22 |
|/ | | | | telehash.. | ||
* | bold | Joey Hess | 2014-02-20 |
| | |||
* | update roadmap | Joey Hess | 2014-02-20 |
| | |||
* | better syntax for directory metadata | Joey Hess | 2014-02-20 |
| | |||
* | remove spam | Joey Hess | 2014-02-20 |
| | |||
* | better proposed syntax for filename derived metadata | Joey Hess | 2014-02-20 |
| | |||
* | todo: metadata derived from master branch filename | Joey Hess | 2014-02-20 |
| |