Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | releasing package git-annex version 6.201610126.20161012 | Joey Hess | 2016-10-12 |
| | |||
* | Added a comment | barthalion@8758f91921f1def00205716519c57234f128c328 | 2016-10-11 |
| | |||
* | Merge branch 'master' of ssh://git-annex.branchable.com | Joey Hess | 2016-10-11 |
|\ | |||
* | | devblog | Joey Hess | 2016-10-11 |
| | | |||
* | | fix tree graft-in bug | Joey Hess | 2016-10-11 |
| | | | | | | | | | | | | | | | | | | | | | | When adding a tree like a/b/c/d when a/b already exists, fixes the bug that the tree that got created was a/b/a/b/c/d Just need to flatten out the top N directories of the tree that's being grafted in, so we get the c/d part. This was complicated by the Tree data type being a rose tree rather than a regular tree. This commit was sponsored by Nick Daly on Patreon. | ||
* | | add test case for sync_in_adjusted_branch_deleted_recently_added_files | Joey Hess | 2016-10-11 |
| | | | | | | | | This commit was sponsored by Denis Dzyubenko on Patreon. | ||
| * | Added a comment: related work | fiatjaf | 2016-10-11 |
|/ | |||
* | devblog | Joey Hess | 2016-10-10 |
| | |||
* | sync: Fix bug in adjusted branch merging that could cause recently added ↵ | Joey Hess | 2016-10-10 |
| | | | | | | | | | | | files to be lost when updating the adjusted branch. The modification flag was not being set when making modifications deep in a tree, so parent trees were not updated to contain the modified tree. Seems to have exposed another bug where the wrong filename gets grafted in. This commit was sponsored by Brock Spratlen on Patreon. | ||
* | more analysis | Joey Hess | 2016-10-10 |
| | |||
* | reproduce recipe | Joey Hess | 2016-10-10 |
| | |||
* | Added a comment: Build on Debian 7.11 AMD64 | https://launchpad.net/~stephane-gourichon-lpad | 2016-10-10 |
| | |||
* | (no commit message) | https://launchpad.net/~helpunclejackoff | 2016-10-09 |
| | |||
* | Move the env description to the right place | https://launchpad.net/~helpunclejackoff | 2016-10-09 |
| | |||
* | (no commit message) | https://launchpad.net/~helpunclejackoff | 2016-10-09 |
| | |||
* | Added a comment: Workflow Summary | xloem | 2016-10-09 |
| | |||
* | Added a comment | xloem | 2016-10-09 |
| | |||
* | Reporting missing file in locally installed doc causing reduced reading comfort. | https://launchpad.net/~stephane-gourichon-lpad | 2016-10-09 |
| | |||
* | Added a comment: Compression level | barthalion@8758f91921f1def00205716519c57234f128c328 | 2016-10-08 |
| | |||
* | Added a comment | Tafnzart | 2016-10-08 |
| | |||
* | (no commit message) | jwm@affa977977673476597d5d5c7bda464959a9bd9b | 2016-10-08 |
| | |||
* | (no commit message) | Tafnzart | 2016-10-07 |
| | |||
* | rename ↵ | http://christian.amsuess.com/chrysn | 2016-10-07 |
| | | | | forum/bittorrent__58___support_offline_operation_and_verification.mdwn to todo/bittorrent__58___support_offline_operation_and_verification.mdwn | ||
* | suggest bittorrent enhancements | http://christian.amsuess.com/chrysn | 2016-10-07 |
| | |||
* | Added a comment | yomguy | 2016-10-07 |
| | |||
* | Added a comment: Re: attaching a torrent file to a downloaded and annexed ↵ | http://christian.amsuess.com/chrysn | 2016-10-07 |
| | | | | directory | ||
* | (no commit message) | pot | 2016-10-06 |
| | |||
* | Added a comment: 780 source files.... | pot | 2016-10-06 |
| | |||
* | Added a comment | ddenis | 2016-10-06 |
| | |||
* | Added a comment | jk@3f2b4ce16bbac41470815333505aa47b91b7a9a6 | 2016-10-06 |
| | |||
* | devblog | Joey Hess | 2016-10-05 |
| | |||
* | response | Joey Hess | 2016-10-05 |
| | |||
* | comment | Joey Hess | 2016-10-05 |
| | |||
* | Support using v3 repositories without upgrading them to v5. | Joey Hess | 2016-10-05 |
| | | | | | | | An easy change now that supportedVersions is a list. Since v3 and v5 are identical other than version number, just add v3 to the list. This commit was sponsored by andrea rota. | ||
* | When auto-upgrading a v3 remote, avoid upgrading to version 6, instead keep ↵ | Joey Hess | 2016-10-05 |
| | | | | | | | | | | it at version 5. Fixes a bug introduced with v6 mode that I didn't notice until now. Probably not many v3 repos left out there, and upgrading them to v6 mode is not disastrous, only a little premature. This commit was sponsored by Riku Voipio | ||
* | verified fix on OSX | Joey Hess | 2016-10-05 |
| | |||
* | comment | Joey Hess | 2016-10-05 |
| | |||
* | moreinfo | Joey Hess | 2016-10-05 |
| | |||
* | response | Joey Hess | 2016-10-05 |
| | |||
* | Avoid using a lot of memory when large objects are present in the git repository | Joey Hess | 2016-10-05 |
| | | | | | | | | | | | | | | | | | | | | | | .. and have to be checked to see if they are a pointed to an annexed file. Cases where such memory use could occur included, but were not limited to: - git commit -a of a large unlocked file (in v5 mode) - git-annex adjust when a large file was checked into git directly Generally, any use of catKey was a potential problem. Fix by using git cat-file --batch-check to check size before catting. This adds another git batch process, which is included in the CatFileHandle for simplicity. There could be performance impact, anywhere catKey is used. Particularly likely to affect adjusted branch generation speed, and operations on unlocked files in v6 mode. Hopefully since the --batch-check and --batch read the same data, disk buffering will avoid most overhead. Leaving only the overhead of talking to the process over the pipe and whatever computation --batch-check needs to do. This commit was sponsored by Bruno BEAUFILS on Patreon. | ||
* | add missing case for unknown size with normal output | Joey Hess | 2016-10-05 |
| | | | | This was lost in previous change, causing a crash in that case. | ||
* | comment | Joey Hess | 2016-10-05 |
| | |||
* | moreinfo | Joey Hess | 2016-10-05 |
| | |||
* | comments | Joey Hess | 2016-10-05 |
| | |||
* | Merge branch 'master' of ssh://git-annex.branchable.com | Joey Hess | 2016-10-05 |
|\ | |||
* | | remove localedir file, fix build | Joey Hess | 2016-10-05 |
| | | |||
| * | Added a comment: bittorrent | evilmoo@0c9697a666c2853b3b3229b6646d3a4e849f7ec8 | 2016-10-05 |
| | | |||
| * | Added a comment | Adam | 2016-10-04 |
|/ | |||
* | Linux standalone: Include locale files in the bundle, and generate locale ↵ | Joey Hess | 2016-10-04 |
| | | | | | | | | | | | | | | | definition files for the locales in use when starting runshell. Currently only done for utf-8 locales because the charset can easily be told for those. Other locales don't include the charset in their name. The locale definition is generated under git-annex.linux/locales. So, this only works if the user can write there. If locale generation fails for any reason, it's silently skipped. The git-annex-standalone.deb installs the bundle under /usr, so this locale generation won't work for non-root users. | ||
* | add LOCPATH to GIT_ANNEX_STANDLONE_ENV | Joey Hess | 2016-10-04 |
| |