Commit graph

30158 commits

Author SHA1 Message Date
memeplex
9bff2e1a23 2017-04-21 19:28:48 +00:00
Joey Hess
4983a6e982
Merge branch 'master' of ssh://git-annex.branchable.com 2017-04-19 09:59:57 -04:00
https://me.yahoo.com/a/hVbIabkhqO11.DpKUWBoztFSLD5q#8cbe8
bd974974fb Added a comment: Why is it takins too long? 2017-04-18 16:26:08 +00:00
memeplex
5d26133bce 2017-04-17 17:53:23 +00:00
Joey Hess
6a39e49987
update year 2017-04-15 19:23:06 -04:00
memeplex
072d981db1 Added a comment 2017-04-14 22:35:49 +00:00
memeplex
db9d6e0ea0 2017-04-14 22:11:55 +00:00
memeplex
a9dd72bb97 2017-04-14 20:19:31 +00:00
sachinkumar83
4d0a4bbee7 2017-04-14 03:38:35 +00:00
Jeremy
488b9ef36f 2017-04-13 14:05:11 +00:00
Horus
c55da38e98 Added a comment 2017-04-12 21:21:08 +00:00
http://xgm.de/oid/
c74248cd1b 2017-04-12 20:56:34 +00:00
Joey Hess
73b3f26497
Merge branch 'master' of ssh://git-annex.branchable.com 2017-04-10 12:15:31 -04:00
Joey Hess
76c63a4a66
avoiding depending on latest version of process except on Windows 2017-04-10 12:14:24 -04:00
anarcat
804f06baa4 Added a comment: sounds like the dumb backend, except not dumb 2017-04-08 20:21:41 +00:00
Joey Hess
e05acd20a5
update 2017-04-08 01:31:43 -04:00
yarikoptic
2286b07aa1 Added a comment 2017-04-08 03:16:49 +00:00
Joey Hess
e3184e54c9
version: Added "dependency versions" line.
This commit was sponsored by Anthony DeRobertis on Patreon.
2017-04-07 18:16:11 -04:00
lee@7614f42c1a6cc84dbc813df25d2f75ed54948e17
2ad7a3e1ff add todo for lib versions 2017-04-07 21:35:48 +00:00
lee@7614f42c1a6cc84dbc813df25d2f75ed54948e17
6d19ed1970 Added a comment 2017-04-07 21:10:35 +00:00
Joey Hess
906427e8ec
response 2017-04-07 17:08:03 -04:00
Joey Hess
0ec998a4c1
Merge branch 'master' of ssh://git-annex.branchable.com 2017-04-07 17:06:12 -04:00
Joey Hess
eefdac6149
devblog 2017-04-07 17:05:20 -04:00
yarikoptic
4e86b5a778 Added a comment: may be? 2017-04-07 21:01:56 +00:00
Joey Hess
61b7af97ec
fix test suite breakage caused by GIT_ANNEX_USE_GIT_SSH 2017-04-07 16:56:04 -04:00
Joey Hess
5af1748c10
remove stealth on-topic spam 2017-04-07 16:36:13 -04:00
Joey Hess
31580d9913
response 2017-04-07 16:35:40 -04:00
Joey Hess
07e0e5f08d
comment 2017-04-07 16:33:28 -04:00
Joey Hess
52f28eb778
comment 2017-04-07 16:29:19 -04:00
Joey Hess
1e4bee253c
comment 2017-04-07 16:25:38 -04:00
Joey Hess
b6169868da
comment 2017-04-07 16:06:14 -04:00
Joey Hess
6896ac06e8
git annex add -u now supported, analagous to git add -u
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.
2017-04-07 15:55:45 -04:00
Joey Hess
57e923b712
gcrypt: Support re-enabling to change eg, encryption parameters.
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.
2017-04-07 14:10:34 -04:00
Joey Hess
99984967eb
enableremote: Fix re-enabling of existing gcrypt remotes, so that eg, 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.
2017-04-07 13:51:09 -04:00
Joey Hess
f406d16525
enableremote: When enabling a non-special remote, param=value parameters can't be used, so error out if any are provided.
This commit was sponsored by Riku Voipio.
2017-04-07 13:14:53 -04:00
Joey Hess
20b634c82c
comment 2017-04-07 12:54:04 -04:00
Joey Hess
78f74aa295
confused user, not a bug 2017-04-07 12:47:42 -04:00
Joey Hess
de649e4fbb
comment 2017-04-07 12:40:55 -04:00
Joey Hess
b0999afbfc
partial analysis 2017-04-07 12:34:19 -04:00
Joey Hess
b6f26bac86
Disable git-annex's support for GIT_SSH and GIT_SSH_COMMAND, unless 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.
2017-04-07 11:35:27 -04:00
Joey Hess
edf1aeda65
Merge branch 'master' of ssh://git-annex.branchable.com 2017-04-06 14:24:40 -04:00
woffs
74400e294b Added a comment 2017-04-06 08:28:06 +00:00
woffs
3d3a573746 Added a comment 2017-04-06 07:29:14 +00:00
spwhitton
c74490e627 Added a comment 2017-04-05 22:28:11 +00:00
Joey Hess
8ae16f902f
devblog 2017-04-05 16:47:29 -04:00
archimedes
f62dbd7445 Added a comment 2017-04-05 20:01:44 +00:00
Joey Hess
239cf833a3
response 2017-04-05 15:19:03 -04:00
archimedes
67b9805a3e 2017-04-05 19:05:07 +00:00
Joey Hess
ee8bbf33bb
followup 2017-04-05 14:47:49 -04:00
Joey Hess
8c722069ea
Merge branch 'master' of ssh://git-annex.branchable.com 2017-04-05 13:27:29 -04:00