aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* Added a comment: How do I switch on the 'feeds' feature?Gravatar http://a-or-b.myopenid.com/2013-08-05
|
* Added a commentGravatar http://joeyh.name/2013-08-04
|
* Merge branch 'master' of ssh://git-annex.branchable.comGravatar Joey Hess2013-08-04
|\
* | avoid more build warnings on WindowsGravatar Joey Hess2013-08-04
| |
* | enable 2 more tests on WindowsGravatar Joey Hess2013-08-04
| |
* | Windows: Fixed permissions problem that prevented removing files from ↵Gravatar Joey Hess2013-08-04
| | | | | | | | | | | | directory special remote. Directory special remotes now fully usable.
* | squash compiler warnings on WindowsGravatar Joey Hess2013-08-04
| |
| * Added a comment: there's a problemGravatar https://www.google.com/accounts/o8/id?id=AItOawln3ckqKx0x_xDZMYwa9Q1bn4I06oWjkog2013-08-04
| |
* | missed some __WINDOWS__ definesGravatar Joey Hess2013-08-04
| |
* | Windows: Added support for encrypted special remotes.Gravatar Joey Hess2013-08-04
| |
| * Git-annex broken on Android v4.3Gravatar http://jamdev.myopenid.com/2013-08-04
| |
| * (no commit message)Gravatar https://www.google.com/accounts/o8/id?id=AItOawkdz1-sVZf6LyrdAYKwloL7lvJ2My2h_ug2013-08-04
| |
| * (no commit message)Gravatar https://www.google.com/accounts/o8/id?id=AItOawl67y6EP2HTErhFl6ch4vDUHym6CH68Vnw2013-08-04
| |
| * Added a comment: This makes me happy :-)Gravatar http://adamspiers.myopenid.com/2013-08-04
| |
| * Added a commentGravatar http://joeyh.name/2013-08-03
| |
| * (no commit message)Gravatar http://joeyh.name/2013-08-03
| |
| * (no commit message)Gravatar https://www.google.com/accounts/o8/id?id=AItOawmqaNwDQ367zpW6cIRviLz6zJZZFODgoEI2013-08-03
| |
| * (no commit message)Gravatar https://www.google.com/accounts/o8/id?id=AItOawmqaNwDQ367zpW6cIRviLz6zJZZFODgoEI2013-08-03
| |
| * (no commit message)Gravatar https://www.google.com/accounts/o8/id?id=AItOawmqaNwDQ367zpW6cIRviLz6zJZZFODgoEI2013-08-03
| |
| * (no commit message)Gravatar https://www.google.com/accounts/o8/id?id=AItOawlzlNQbf6wBgv9j6-UqfpXcQyAYMF8S3t42013-08-03
| |
| * (no commit message)Gravatar https://www.google.com/accounts/o8/id?id=AItOawlzlNQbf6wBgv9j6-UqfpXcQyAYMF8S3t42013-08-03
| |
| * (no commit message)Gravatar https://www.google.com/accounts/o8/id?id=AItOawlzlNQbf6wBgv9j6-UqfpXcQyAYMF8S3t42013-08-03
| |
| * Added a comment: Installation on tonidoplugGravatar https://www.google.com/accounts/o8/id?id=AItOawlXEIT2PEAuHuInLP4UYVzWE0lceMYd2lA2013-08-03
| |
| * Added a commentGravatar https://www.google.com/accounts/o8/id?id=AItOawl9sYlePmv1xK-VvjBdN-5doOa_Xw-jH4U2013-08-03
| |
* | importfeed: Fix handling of dots in extensions.Gravatar Joey Hess2013-08-03
|/
* importfeed: Ignores transient problems with feeds. Only exits nonzero when a ↵Gravatar Joey Hess2013-08-03
| | | | feed has repeatedly had a problems for at least 1 day.
* blog for the dayGravatar Joey Hess2013-08-02
|
* gitignore support for the assistant and watcherGravatar Joey Hess2013-08-02
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Requires git 1.8.4 or newer. When it's installed, a background git check-ignore process is run, and used to efficiently check ignores whenever a new file is added. Thanks to Adam Spiers, for getting the necessary support into git for this. A complication is what to do about files that are gitignored but have been checked into git anyway. git commands assume the ignore has been overridden in this case, and not need any more overriding to commit a changed version. However, for the assistant to do the same, it would have to run git ls-files to check if the ignored file is in git. This is somewhat expensive. Or it could use the running git-cat-file process to query the file that way, but that requires transferring the whole file content over a pipe, so it can be quite expensive too, for files that are not git-annex symlinks. Now imagine if the user knows that a file or directory tree will be getting frequent changes, and doesn't want the assistant to sync it, so gitignores it. The assistant could overload the system with repeated ls-files checks! So, I've decided that the assistant will not automatically commit changes to files that are gitignored. This is a tradeoff. Hopefully it won't be a problem to adjust .gitignore settings to not ignore files you want the assistant to autocommit, or to manually git annex add files that are listed in .gitignore. (This could be revisited if git-annex gets access to an interface to check the content of the index w/o forking a git command. This could be libgit2, or perhaps a separate git cat-file --batch-check process, so it wouldn't need to ship over the whole file content.) This commit was sponsored by Francois Marier. Thanks!
* better git version checkingGravatar Joey Hess2013-08-02
|
* release notesGravatar Joey Hess2013-08-02
|
* add news item for git-annex 4.20130802Gravatar Joey Hess2013-08-02
|
* releasing version 4.201308024.20130802Gravatar Joey Hess2013-08-02
|
* improve error messageGravatar Joey Hess2013-08-02
|
* fix syntaxGravatar Joey Hess2013-08-02
|
* fix Windows breakageGravatar Joey Hess2013-08-02
|
* get rid of __WINDOWS__, use mingw32_HOST_OSGravatar Joey Hess2013-08-02
| | | | | The latter is harder for me to remember, but avoids build failures in code used by the configure program.
* Merge branch 'master' of ssh://git-annex.branchable.comGravatar Joey Hess2013-08-02
|\
| * Added a comment: re: git annex get failed -- debugGravatar https://www.google.com/accounts/o8/id?id=AItOawnaH44G3QbxBAYyDwy0PbvL0ls60XoaR3Y2013-08-02
| |
| * Added a comment: re: git annex get failedGravatar https://www.google.com/accounts/o8/id?id=AItOawnaH44G3QbxBAYyDwy0PbvL0ls60XoaR3Y2013-08-02
| |
| * Added a comment: git annex get failedGravatar https://www.google.com/accounts/o8/id?id=AItOawnaH44G3QbxBAYyDwy0PbvL0ls60XoaR3Y2013-08-02
| |
| * (no commit message)Gravatar https://www.google.com/accounts/o8/id?id=AItOawl9sYlePmv1xK-VvjBdN-5doOa_Xw-jH4U2013-08-02
| |
| * Added a commentGravatar https://www.google.com/accounts/o8/id?id=AItOawl9sYlePmv1xK-VvjBdN-5doOa_Xw-jH4U2013-08-02
| |
| * Sometimes, I dislike MarkDownGravatar Richard Hartmann2013-08-02
| |
| * Fix indentationGravatar Richard Hartmann2013-08-02
| |
| * Added a commentGravatar https://www.google.com/accounts/o8/id?id=AItOawl9sYlePmv1xK-VvjBdN-5doOa_Xw-jH4U2013-08-02
| |
| * Added a commentGravatar http://joeyh.name/2013-08-01
| |
| * Added a comment: checkpresent againGravatar https://www.google.com/accounts/o8/id?id=AItOawnWvnTWY6LrcPB4BzYEBn5mRTpNhg5EtEg2013-08-01
| |
* | reorderGravatar Joey Hess2013-08-01
|/
* blog for the dayGravatar Joey Hess2013-08-01
|
* Slow and ugly work around for bug #718517 in git, which broke git-cat-file ↵Gravatar Joey Hess2013-08-01
| | | | | | | | | | | | | --batch for filenames containing spaces. This runs git-cat-file in non-batch mode for all files with spaces. If a directory tree has a lot of them, and is in direct mode, even "git annex add" when there are few new files will need a *lot* of forks! The only reason buffering the whole file content to get the sha is not a memory leak is that git-annex only ever uses this on symlinks. This needs to be reverted as soon as a fix is available in git!