Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | add signatures to the various sections | anarcat | 2017-04-24 |
| | |||
* | drop heading that was unnecessary and asymetric | anarcat | 2017-04-24 |
| | |||
* | add git-annex-forget | anarcat | 2017-04-24 |
| | |||
* | fix fpart 403 error | anarcat | 2017-04-24 |
| | |||
* | add zini's split repo procedure | anarcat | 2017-04-24 |
| | |||
* | Added a comment: git annex standalone on Synology NAS | ewen | 2017-04-23 |
| | |||
* | Added a comment: git annex get ... transfer lock issues | ewen | 2017-04-23 |
| | |||
* | CC me | ewen | 2017-04-23 |
| | |||
* | Described steps to reproduce git annex get failure on SMB share | ewen | 2017-04-23 |
| | |||
* | (no commit message) | memeplex | 2017-04-21 |
| | |||
* | Added a comment: Why is it takins too long? | https://me.yahoo.com/a/hVbIabkhqO11.DpKUWBoztFSLD5q#8cbe8 | 2017-04-18 |
| | |||
* | (no commit message) | memeplex | 2017-04-17 |
| | |||
* | Added a comment | memeplex | 2017-04-14 |
| | |||
* | (no commit message) | memeplex | 2017-04-14 |
| | |||
* | (no commit message) | memeplex | 2017-04-14 |
| | |||
* | (no commit message) | sachinkumar83 | 2017-04-14 |
| | |||
* | (no commit message) | Jeremy | 2017-04-13 |
| | |||
* | Added a comment | Horus | 2017-04-12 |
| | |||
* | (no commit message) | http://xgm.de/oid/ | 2017-04-12 |
| | |||
* | Merge branch 'master' of ssh://git-annex.branchable.com | Joey Hess | 2017-04-10 |
|\ | |||
* | | avoiding depending on latest version of process except on Windows | Joey Hess | 2017-04-10 |
| | | |||
| * | Added a comment: sounds like the dumb backend, except not dumb | anarcat | 2017-04-08 |
| | | |||
* | | update | Joey Hess | 2017-04-08 |
| | | |||
| * | Added a comment | yarikoptic | 2017-04-08 |
|/ | |||
* | version: Added "dependency versions" line. | Joey Hess | 2017-04-07 |
| | | | | This commit was sponsored by Anthony DeRobertis on Patreon. | ||
* | add todo for lib versions | lee@7614f42c1a6cc84dbc813df25d2f75ed54948e17 | 2017-04-07 |
| | |||
* | Added a comment | lee@7614f42c1a6cc84dbc813df25d2f75ed54948e17 | 2017-04-07 |
| | |||
* | response | Joey Hess | 2017-04-07 |
| | |||
* | Merge branch 'master' of ssh://git-annex.branchable.com | Joey Hess | 2017-04-07 |
|\ | |||
* | | devblog | Joey Hess | 2017-04-07 |
| | | |||
| * | Added a comment: may be? | yarikoptic | 2017-04-07 |
|/ | |||
* | fix test suite breakage caused by GIT_ANNEX_USE_GIT_SSH | Joey Hess | 2017-04-07 |
| | |||
* | remove stealth on-topic spam | Joey Hess | 2017-04-07 |
| | |||
* | response | Joey Hess | 2017-04-07 |
| | |||
* | comment | Joey Hess | 2017-04-07 |
| | |||
* | comment | Joey Hess | 2017-04-07 |
| | |||
* | comment | Joey Hess | 2017-04-07 |
| | |||
* | comment | Joey Hess | 2017-04-07 |
| | |||
* | git annex add -u now supported, analagous to git add -u | Joey Hess | 2017-04-07 |
| | | | | | | | | | | | | Unlike git add -u, git annex add -u does not update the index for files removed from the working tree. But then, "git add ." stages removals, and "git annex add ." does not, so that's an existing divergence. Seems that --update --batch would need to run git ls-files once per line of batch input, which would surely be too slow, so just throw an error for that. This commit was supported by the NSF-funded DataLad project. | ||
* | gcrypt: Support re-enabling to change eg, encryption parameters. | Joey Hess | 2017-04-07 |
| | | | | | | | | This was never supported before. And it doesn't re-encrypt the gcrypt repo to the new gcrypt-participants, but it does at least now not crash, and set gcrypt-participants. This commit was sponsored by andrea rota. | ||
* | enableremote: Fix re-enabling of existing gcrypt remotes, so that eg, ↵ | Joey Hess | 2017-04-07 |
| | | | | | | | | | | | | encryption key changes take effect. They were silently ignored, a reversion introduced in 6.20160527. I don't like this regular git remote special case in enableremote, but I can't see a way to get rid of it. So, check if the existing remote is a Remote.Git This commit was sponsored by Trenton Cronholm on Patreon. | ||
* | enableremote: When enabling a non-special remote, param=value parameters ↵ | Joey Hess | 2017-04-07 |
| | | | | | | can't be used, so error out if any are provided. This commit was sponsored by Riku Voipio. | ||
* | comment | Joey Hess | 2017-04-07 |
| | |||
* | confused user, not a bug | Joey Hess | 2017-04-07 |
| | |||
* | comment | Joey Hess | 2017-04-07 |
| | |||
* | partial analysis | Joey Hess | 2017-04-07 |
| | |||
* | Disable git-annex's support for GIT_SSH and GIT_SSH_COMMAND, unless ↵ | Joey Hess | 2017-04-07 |
| | | | | | | | | | | | | | | | | | | | | GIT_ANNEX_USE_GIT_SSH=1 is also set in the environment. This is necessary because as feared, the extra -n parameter that git-annex passes breaks uses of these environment variables that expect exactly the parameters that git passes. For example, see https://github.com/datalad/datalad/issues/1456 It would of course be possible to pre-close stdin before running ssh so not needing the -n, and I think that would not even break ssh's password caching. But it would probably involve a lot of work, possibly would need to deal with some layering violations, and would be error-prone. The really clean fix would be to make all the ssh stuff return a CreateProcess, which could have the handle closed when appropriate, but that would be a large reworing of the code base. This commit was supported by the NSF-funded DataLad project. | ||
* | Merge branch 'master' of ssh://git-annex.branchable.com | Joey Hess | 2017-04-06 |
|\ | |||
| * | Added a comment | woffs | 2017-04-06 |
| | | |||
| * | Added a comment | woffs | 2017-04-06 |
| | |