Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | split out raw sql interface | 2016-01-11 | |
| | |||
* | comment | 2016-01-11 | |
| | |||
* | comment | 2016-01-11 | |
| | |||
* | comment | 2016-01-11 | |
| | |||
* | comment | 2016-01-11 | |
| | |||
* | comment | 2016-01-11 | |
| | |||
* | commet | 2016-01-11 | |
| | |||
* | comment | 2016-01-11 | |
| | |||
* | When annex.http-headers is used to set the User-Agent header, avoid sending ↵ | 2016-01-11 | |
| | | | | User-Agent: git-annex | ||
* | Added a comment: Possible fix for rsync windows paths | 2016-01-11 | |
| | |||
* | Added a comment | 2016-01-10 | |
| | |||
* | removed | 2016-01-10 | |
| | |||
* | Added a comment: Same here | 2016-01-10 | |
| | |||
* | Added a comment: Same here | 2016-01-10 | |
| | |||
* | Added a comment | 2016-01-10 | |
| | |||
* | Added a comment: What do you mean by "git-annex" branch? | 2016-01-09 | |
| | |||
* | Added a comment: Copy from .git/config | 2016-01-09 | |
| | |||
* | Added a comment: Special remotes | 2016-01-08 | |
| | |||
* | link | 2016-01-08 | |
| | |||
* | layout | 2016-01-08 | |
| | |||
* | Merge branch 'master' of ssh://git-annex.branchable.com | 2016-01-08 | |
|\ | |||
* | | devblog | 2016-01-08 | |
| | | |||
* | | update | 2016-01-08 | |
| | | |||
* | | defer deletion of test repos until end, fixes sqlite crash | 2016-01-08 | |
| | | | | | | | | | | | | | | | | The crash turned out to be caused by the sqlite database being deleted out from under sqlite before it was done with it. Since multiple git_annex calls are done in the same process while running the test suite, the DbHandle could linger until GCed, and the test repo, and thus sqlite database be deleted before the workerThread was done. | ||
* | | fix one more test failure with v6 unlocked file merge conflict resolution | 2016-01-08 | |
| | | |||
| * | Added a comment | 2016-01-08 | |
|/ | |||
* | better fix for slash in view metadata | 2016-01-08 | |
| | | | | | | | | | The homomorphs are back, just encoded such that it doesn't crash in LANG=C However, I noticed a bug in the old escaping; [pseudoSlash] was escaped the same as ['/','/']. Fixed by using '%' to escape pseudoSlash. Which requires doubling '%' to escape it, but that's already done in the escaping of worktree filenames in a view, so is probably ok. | ||
* | view: Avoid using cute unicode homomorphs for '/' and '\' and instead use ↵ | 2016-01-08 | |
| | | | | ugly escaping, as the unicode method doesn't work on non-unicode supporting systems. | ||
* | link to new tip about encryption | 2016-01-08 | |
| | |||
* | (no commit message) | 2016-01-08 | |
| | |||
* | (no commit message) | 2016-01-08 | |
| | |||
* | Added a comment | 2016-01-08 | |
| | |||
* | Added a comment: bump! | 2016-01-08 | |
| | |||
* | Added a comment | 2016-01-08 | |
| | |||
* | (no commit message) | 2016-01-07 | |
| | |||
* | response | 2016-01-07 | |
| | |||
* | rekey: No longer copies over urls from the old to the new key. | 2016-01-07 | |
| | | | | | It makes sense for migrate to do that, but not for this low-level (and little used) plumbing command to. | ||
* | Merge branch 'master' of ssh://git-annex.branchable.com | 2016-01-07 | |
|\ | |||
* | | devblog | 2016-01-07 | |
| | | |||
* | | avoid confusing git with a modified ctime in clean filter | 2016-01-07 | |
| | | | | | | | | | | | | | | Linking the file to the tmp dir was not necessary in the clean filter, and it caused the ctime to change, which caused git to think the file was changed. This caused git status to get slow as it kept re-cleaning unchanged files. | ||
* | | fix inverted logic in old associated files cleanup | 2016-01-07 | |
| | | |||
* | | update | 2016-01-07 | |
| | | |||
* | | fix broken test | 2016-01-07 | |
| | | |||
* | | migrate and rekey v6 unlocked file support | 2016-01-07 | |
| | | |||
* | | migrate: Copy over metadata to new key. | 2016-01-07 | |
| | | |||
| * | Added a comment | 2016-01-07 | |
|/ | |||
* | unused: deal with v6 unlocked file that is implicitly ingested by git diff etc | 2016-01-06 | |
| | |||
* | force hash to finish with file before returning | 2016-01-06 | |
| | | | | | | Fixes a minor fd leak, never more than 1 in normal use, which broke the test suite when I tried to write to a file that was still open for a previous hashing. | ||
* | cleanup | 2016-01-06 | |
| | |||
* | optimise | 2016-01-06 | |
| | | | | | | | | | | | | d1ce927d95fe7c331cbff3317797a60aa288738b put a cat-file into the fast bloomfilter generation path. Instead, add another bloom filter which diffs from the work tree to the index. Also, pull the sha of the changed object out of the diffs, and cat that object directly, rather than indirecting through the filename. Finally, removed some hacks that are unncessary thanks to the worktree to index diff. |