Commit graph

28088 commits

Author SHA1 Message Date
harimau
d23fee6a9e 2020-04-21 20:54:48 +00:00
Ilya_Shlyakhter
461e3c0b62 Added a comment: "dry run" option 2020-04-21 19:04:07 +00:00
Joey Hess
cd1676d604
fix bug involving local git remote and out of date location log
get --from, move --from: When used with a local git remote, these used to
silently skip files that the location log thought were present on the
remote, when the remote actually no longer contained them. Since that
behavior could be surprising, now instead display a warning.

I got very confused when I encountered this behavior, since it was silently
skipping a file I needed that whereis said was on the remote.

get without --from already displayed a "unable to access these remotes"
message, which while a bit misleading in that the remote is likely
accessible, but just doesn't contain the file, at least indicated something
went wrong.

Having get --from display a warning makes it in line with get
w/o --from, so seems certianly ok. It might be there are situations where
move --from is used, on eg a whole directory, and the user only wants to
move whatever is present in the remote, and is perfectly ok with files
that are not present being skipped. So I'm less sure about the new warning
being ok there. OTOH, only local git remotes avoiding displaying a warning
in that case too, so this just brings them into line with other remotes.

(Also note that this makes it a little bit faster when dealing with a lot of
files, since it avoids a redundant stat of the file.)
2020-04-21 12:36:58 -04:00
Joey Hess
2f87c6db79
done 2020-04-21 11:30:49 -04:00
Joey Hess
87bab2d7c2
close 2020-04-21 11:29:51 -04:00
Joey Hess
cee6b344b4
cat-file resource pool
Avoid running a large number of git cat-file child processes when run with
a large -J value.

This implementation takes care to avoid adding any overhead to git-annex
when run without -J. When run with -J, there is a small bit of added
overhead, to manipulate the resource pool. That optimisation added a
fair bit of complexity.
2020-04-20 15:19:31 -04:00
Joey Hess
87b7b0f202
comment 2020-04-20 12:06:14 -04:00
Joey Hess
5446379cd9
Merge branch 'master' of ssh://git-annex.branchable.com 2020-04-20 10:03:38 -04:00
thk
ffeef75917 2020-04-19 08:15:47 +00:00
Joey Hess
1b2dd74d8d
bug 2020-04-18 23:57:48 -04:00
yarikoptic
6c9c974e55 Added a comment 2020-04-18 02:14:32 +00:00
yarikoptic
67f0407477 Added a comment 2020-04-18 02:05:52 +00:00
Joey Hess
b480ce01f7
Merge branch 'master' of ssh://git-annex.branchable.com 2020-04-17 17:47:59 -04:00
Joey Hess
2da760fcae
comment 2020-04-17 17:32:49 -04:00
yarikoptic
a2b2708ab6 Added a comment: quick follow up 2020-04-17 20:34:55 +00:00
Joey Hess
988317634b
comment 2020-04-17 14:11:17 -04:00
Joey Hess
6c39ec9b27
comment 2020-04-17 12:37:28 -04:00
Dan
b325dfea4d Added a comment: find wanted on remote? 2020-04-16 21:19:44 +00:00
yarikoptic
5dc513ccdb Added a comment 2020-04-16 03:43:13 +00:00
yarikoptic
1705d3657e Added a comment: it is many more "open files" in reality 2020-04-16 03:41:07 +00:00
Joey Hess
957a87b437
fix absolute filenames fed into --batch and git-annex info 2020-04-15 16:04:05 -04:00
Joey Hess
a14168a321
reproduced 2020-04-15 15:06:53 -04:00
Joey Hess
503abb6d54
remove warning about git gc for annex.alwayscommit=false
I doubt that warning has ever been right, but I'm sure it is not right
now.

For there to be a risk of git gc deleting objects that are in the annex
index, journal files would have to be staged into it, and deleted, but
the index not committed to the git-annex branch. And AFAICS, there is no
code path where that actually happens. I considered adding one recently,
but didn't.

The way it actually works is, as long as the user has annex.alwayscommit=false
the data lives in the journal, where it's safe from git gc. Then when
git-annex is run w/o that config, the journal is staged into the index,
which is immediately committed to the branch. There's no window where
git gc could delete the objects, because git gc only deletes objects
after some time (2 weeks by default).

Now, if git-annex gets suspended at just the wrong time, or interrupted,
then yes, it's possible. But doesn't matter whether that config was ever
set or not. And many uses of git-annex also recover from that situation
by committing to the git-annex branch.
2020-04-15 14:25:33 -04:00
Joey Hess
ddadc0c1aa
Merge branch 'master' of ssh://git-annex.branchable.com 2020-04-15 14:20:06 -04:00
Joey Hess
891e9a81eb
close bug that was apparently fixed satisfactorally 2020-04-15 14:17:21 -04:00
Joey Hess
a2fed82267
close 2020-04-15 14:15:41 -04:00
Joey Hess
7ef030b576
close old bug since git-annex no longer uses rsync like it used to 2020-04-15 14:08:48 -04:00
kyle
1a040e0c0a Added a comment 2020-04-15 18:02:29 +00:00
Joey Hess
43a9808292
disable journal read optimisation when alwayscommit=false
The journal read optimisation in aeca7c220 later got fixed in eedd73b84
to stage and commit any files that were left in the journal by a
previous git-annex run. That's necessary for the optimisation to work
correctly. But it also meant that alwayscommit=false started committing
the previous git-annex processes journalled changes, which defeated the
purpose of the config setting entirely.

So, disable the optimisation when alwayscommit=false, leaving the
files in the journal and not committing them. See my comments on the bug
report for why this seemed the best approach.

Also fixes a problem when annex.merge-annex-branches=false and there
are changes in the journal. That config indirectly prevents committing
the journal. (Which seems a bit odd given its name, but it always has..)
So, when there were changes in the journal, perhaps left there due to
alwayscommit=false being set before, the optimisation would prevent
git-annex from reading the journal files, and it would operate with out
of date information.
2020-04-15 13:24:33 -04:00
Joey Hess
9f17242f29
comment 2020-04-15 12:48:55 -04:00
Joey Hess
8ac44498d6
comment 2020-04-15 12:43:22 -04:00
Joey Hess
1aa7082c9a
better response 2020-04-15 12:17:57 -04:00
Joey Hess
b241f579c0
hm 2020-04-15 12:14:39 -04:00
Joey Hess
f4d5ec1457
correction 2020-04-15 12:12:11 -04:00
Joey Hess
520ddf1c75
comment 2020-04-15 12:10:51 -04:00
Christoph.Schmidpeter@d3e5d124c7d5459315c2a9f983ab9a70b88e1d03
95b505c22f 2020-04-15 13:06:14 +00:00
Christoph.Schmidpeter@d3e5d124c7d5459315c2a9f983ab9a70b88e1d03
98c1047a29 removed 2020-04-15 13:00:12 +00:00
Christoph.Schmidpeter@d3e5d124c7d5459315c2a9f983ab9a70b88e1d03
c510e83001 Added a comment: Problems with Assistant and Android 2020-04-15 12:59:44 +00:00
Christoph.Schmidpeter@d3e5d124c7d5459315c2a9f983ab9a70b88e1d03
98fac2be0e 2020-04-15 12:59:04 +00:00
Christoph.Schmidpeter@d3e5d124c7d5459315c2a9f983ab9a70b88e1d03
61ba4d6387 2020-04-15 12:09:08 +00:00
kyle
b11931a4aa bug: alwayscommit=false creating commits 2020-04-14 22:43:34 +00:00
erewhon
92c1d0863b Added a comment 2020-04-14 21:45:35 +00:00
erewhon
5d1495ee0f removed 2020-04-14 21:30:38 +00:00
erewhon
40a3545149 Added a comment 2020-04-14 21:20:51 +00:00
erewhon
a9f7770cde removed 2020-04-14 21:19:46 +00:00
erewhon
6add91fefd Added a comment 2020-04-14 21:18:23 +00:00
Joey Hess
ba6f46c113
--auto doc wording
try to make more clear that --auto is not --all
2020-04-13 16:12:48 -04:00
kyle
b60f29f17b Added a comment 2020-04-13 18:58:50 +00:00
Joey Hess
c22c07bbed
Merge branch 'master' of ssh://git-annex.branchable.com 2020-04-13 14:32:46 -04:00
Joey Hess
e57aebf6ad
comment 2020-04-13 14:07:23 -04:00
Joey Hess
fbd78cff64
improve documentation 2020-04-13 12:33:35 -04:00
bjornw@6a7d7d0413efc7ed3bb44922586f040bb768b71c
e96d3b5776 2020-04-13 16:30:33 +00:00
4omecha@fff0ca6fa5307d92706e5ee6812d8db8f8067df0
25ac0ef160 Best way to restore objects with correct names w/o git log present? 2020-04-13 09:19:23 +00:00
4omecha@fff0ca6fa5307d92706e5ee6812d8db8f8067df0
16f2ccfc7c bad edit
This reverts commit ce664ebc7b
2020-04-13 09:16:39 +00:00
4omecha@fff0ca6fa5307d92706e5ee6812d8db8f8067df0
ce664ebc7b Best way to restore objects with correct names w/o git log present? 2020-04-13 09:13:51 +00:00
Ilya_Shlyakhter
995d327784 Added a comment 2020-04-13 00:53:59 +00:00
erewhon
4714d2cc5e 2020-04-12 19:28:38 +00:00
erewhon
f6e0345b07 2020-04-12 19:10:35 +00:00
Joey Hess
df587ff068
Merge branch 'master' of ssh://git-annex.branchable.com 2020-04-10 14:46:59 -04:00
Joey Hess
2caf579718
cache annex index filename for 1.5% speedup to queries 2020-04-10 13:37:04 -04:00
christoph@62dc589e980f444024ff1a9808022914e056f386
893239ed8f rename bugs/fsck_lies_about_checksum__63__.mdwn to bugs/fsck_tells___39__ok__39___also_if_no_file_present.mdwn 2020-04-10 12:06:52 +00:00
christoph@62dc589e980f444024ff1a9808022914e056f386
5c8deb61e1 2020-04-10 12:04:29 +00:00
christoph@62dc589e980f444024ff1a9808022914e056f386
fec5b99901 2020-04-10 12:02:35 +00:00
Joey Hess
5e4423c058
new optimisation target 2020-04-09 14:13:00 -04:00
Joey Hess
aeca7c2207
Sped up query commands that read the git-annex branch by around 5%
The only price paid is one additional MVar read per write to the journal.
Presumably writing a journal file dominiates over a MVar read time by
several orders of magnitude.

--batch does not get the speedup because then it needs to notice when
another process has made a change. Also made the assistant and other damon
modes bypass the optimisation, which would not help them anyway.
2020-04-09 13:54:43 -04:00
Joey Hess
aba905152a
Merge branch 'master' of ssh://git-annex.branchable.com 2020-04-08 14:12:20 -04:00
Joey Hess
89c3b20695
Merge branch 'bytestring-ref' 2020-04-08 14:10:24 -04:00
Chymera
02672e4734 2020-04-08 05:18:15 +00:00
yarikoptic
0209a8f55a Added a comment 2020-04-08 01:08:10 +00:00
Joey Hess
c0cd07c36b
Ref ByteString conversion done
Test suite passes.
2020-04-07 17:41:09 -04:00
Joey Hess
8b75da0521
comment 2020-04-07 14:49:08 -04:00
yarikoptic
5d076ee847 Added a comment 2020-04-07 18:25:46 +00:00
Joey Hess
0b91c0e314
comment 2020-04-07 13:46:10 -04:00
kyle
c8829eedc0 Added a comment 2020-04-07 15:30:55 +00:00
yarikoptic
b7f9f3fdf5 initial remote 2020-04-06 21:35:32 +00:00
kyle
909fcbaae5 bug: wanted=anything and deleted files 2020-04-06 16:51:44 +00:00
Joey Hess
6e9714612b
update 2020-04-05 18:35:34 -04:00
javkalas@30f67400375ff022347b37236b63786ecf79cd82
e9d138e717 Added a comment 2020-04-03 19:09:52 +00:00
Joey Hess
23c1809aab
respond to confused user and close non-bug 2020-04-01 20:40:43 -04:00
mike@920d668f9cacd7a1a8886c180a95a0150e2ab283
3388f53391 2020-04-02 00:36:08 +00:00
mike@920d668f9cacd7a1a8886c180a95a0150e2ab283
6d85c0932b 2020-04-02 00:33:24 +00:00
mike@920d668f9cacd7a1a8886c180a95a0150e2ab283
318f157d16 2020-04-02 00:31:01 +00:00
mike@920d668f9cacd7a1a8886c180a95a0150e2ab283
ae3d84e0b2 2020-04-02 00:30:13 +00:00
mike@920d668f9cacd7a1a8886c180a95a0150e2ab283
a92892bb87 2020-04-02 00:22:34 +00:00
mike@920d668f9cacd7a1a8886c180a95a0150e2ab283
df8c5b942b removed 2020-04-02 00:06:54 +00:00
mike@920d668f9cacd7a1a8886c180a95a0150e2ab283
76693bceda removed 2020-04-02 00:06:22 +00:00
mike@920d668f9cacd7a1a8886c180a95a0150e2ab283
78b6264a0a Added a comment 2020-04-01 23:37:55 +00:00
Joey Hess
8f297cb64f
remove old dead link 2020-04-01 15:44:15 -04:00
Joey Hess
acb356d75d
reorg more 2020-04-01 15:42:59 -04:00
Joey Hess
7d196c3e0d
move to right place and remove debian and hackage matrix embeds which have stopped working 2020-04-01 15:40:44 -04:00
Joey Hess
43d3948e52
added the datalad standalone build CI status badge 2020-04-01 15:38:40 -04:00
xloem
ad483f5e23 2020-03-31 23:40:12 +00:00
thk
f4890ae642 2020-03-31 06:43:39 +00:00
thk
5df80188be Added a comment: Also problem with USB drives 2020-03-31 06:36:14 +00:00
yarikoptic
a180418843 Added a comment 2020-03-31 01:22:54 +00:00
https://openid.jorsn.eu/
8f1a988b43 Added a comment: automatic repository upgrades 2020-03-30 23:24:51 +00:00
https://openid.jorsn.eu/
5341fbc270 removed error 2020-03-30 22:41:59 +00:00
https://openid.jorsn.eu/
8eb4a82569 2020-03-30 22:41:17 +00:00
vinicius.vin@6d4d58c59c394cd744d469c9d7c41e264331dfcd
3f02d0f8ac Added a comment 2020-03-30 21:02:52 +00:00
Joey Hess
9717915635
add news item for git-annex 8.20200330 2020-03-30 13:47:14 -04:00
Joey Hess
9cc1917295
close 2020-03-30 12:35:41 -04:00
yarikoptic
dd898afb40 Added a comment: Let's just close 2020-03-30 16:32:24 +00:00
Joey Hess
0f6251ac6a
followup 2020-03-30 12:03:38 -04:00
Joey Hess
1aabcd1038
moreinfo 2020-03-30 11:51:03 -04:00
Joey Hess
e6adfa1dc1
close per comments 2020-03-30 11:48:44 -04:00
Ilya_Shlyakhter
f7311ffc9d Added a comment: clarification re: upgrades 2020-03-30 15:24:01 +00:00
andrew
c29943f400 Added a comment: spotlight and macOS 2020-03-29 15:27:40 +00:00
erewhon
eec916a733 2020-03-28 17:52:28 +00:00
erewhon
89a056aed6 2020-03-28 16:47:27 +00:00
Soxofaan
ffafed4d82 Fix typo remotes.log -> remote.log 2020-03-28 13:36:45 +00:00
Soxofaan
63e75b71f8 removed duplicate "encryption=none" in initremote command 2020-03-28 10:41:53 +00:00
vinicius.vin@6d4d58c59c394cd744d469c9d7c41e264331dfcd
86bdda710f Added a comment 2020-03-27 23:04:34 +00:00
Ilya_Shlyakhter
fe8fa1a1e0 Added a comment 2020-03-27 21:12:18 +00:00
Ilya_Shlyakhter
2fd97e780b Added a comment 2020-03-27 21:11:14 +00:00
kyle
fd8a9a54e2 Added a comment: comment: resolved by 7.20191024 2020-03-27 20:49:44 +00:00
Ilya_Shlyakhter
de466ed0ad Added a comment: git add behavior 2020-03-27 20:49:19 +00:00
vinicius.vin@6d4d58c59c394cd744d469c9d7c41e264331dfcd
4cf46f56e2 2020-03-27 20:23:15 +00:00
vinicius.vin@6d4d58c59c394cd744d469c9d7c41e264331dfcd
0784136c3c 2020-03-27 20:19:10 +00:00
j@833cff95824930f20b36c340f1217182b6937407
d2621209a9 2020-03-27 12:30:44 +00:00
kyle
dfee97cd56 Added a comment 2020-03-26 23:32:56 +00:00
lykos@d125a37d89b1cfac20829f12911656c40cb70018
d27a94eec0 Added a comment 2020-03-26 20:36:28 +00:00
Joey Hess
c9ac7aa338
patch applied 2020-03-26 15:18:47 -04:00
Joey Hess
78977ce417
correct inaccurate part of comment 2020-03-26 15:08:12 -04:00
Joey Hess
42d73a3e62
comment 2020-03-26 14:48:54 -04:00
Joey Hess
173465592f
changelog for Kyle's other fix, and close bug 2020-03-26 13:18:41 -04:00
Joey Hess
b426ff6825
minimize lenth of path to gpg agent socket
Considered using the system tmp dir rather than putting it inside .t/,
but then if TEMP were set to a long path, that would be a problem.
Relative path seems the best approach, and will always be nice and
short.

The only downside of it is, if git-annex somehow changes the cwd
while running, it would break. But git-annex does not do that, and
should never do that.
2020-03-26 13:04:24 -04:00
Joey Hess
40c911e427
analysis 2020-03-26 12:41:38 -04:00
cbaines
9292d6036c Added a comment 2020-03-25 22:40:12 +00:00
Joey Hess
c9dd1de13d
devblog 2020-03-25 13:26:25 -04:00
Joey Hess
c827ddcdb6
typo 2020-03-25 13:20:24 -04:00
Joey Hess
a0d274fed6
Merge branch 'master' of ssh://git-annex.branchable.com 2020-03-25 13:05:47 -04:00
Joey Hess
357f783edf
add priority tags 2020-03-25 13:05:09 -04:00
spwhitton
79ba17946f Added a comment 2020-03-25 16:31:13 +00:00
yarikoptic
0397011792 initial report on failing gpg related tests inside singularity container 2020-03-25 00:01:36 +00:00
kyle
a51a94f616 bug: add --force-small submodule 2020-03-23 20:43:01 +00:00
ps
d23c0b0dd0 Added a comment: Solved 2020-03-23 19:07:54 +00:00
ps
c9e4a3a878 2020-03-23 16:51:48 +00:00
ps
6aa8ef340a 2020-03-23 16:48:57 +00:00
ps
01ad6eb9c3 2020-03-23 16:44:31 +00:00
kyle
4944b1bd13 Added a comment 2020-03-20 17:34:03 +00:00
Joey Hess
bbe977a2b6
fsck: Fix reversion in 8.20200226 that made it incorrectly warn that hashed keys with an extension should be upgraded. 2020-03-20 13:09:16 -04:00
Joey Hess
6222277179
Merge branch 'master' of ssh://git-annex.branchable.com 2020-03-20 12:51:39 -04:00
Joey Hess
4b92bbe8d7
webdav: Made exporttree remotes faster by caching connection to the server
Followed example of Remote.S3.
2020-03-20 12:48:43 -04:00
kyle
903b8348c9 Added a comment: comment: introduced by 09df58c4e 2020-03-20 16:20:05 +00:00
Joey Hess
24255b3c96
confirmed, and open todo for something mentioned in this bug 2020-03-20 12:00:07 -04:00
mdemunck@6c26b2316205b7bc1125c6cbd3bc63bdb9e1cfad
42dcf48fbb 2020-03-20 09:08:08 +00:00
thk
677e5f6e12 Added a comment: sponsoring? 2020-03-19 08:40:32 +00:00
kyle
83a5467e93 sync adjusted submodule commit 2020-03-18 02:18:03 +00:00
thk
6eacb3e170 2020-03-17 20:45:59 +00:00
kyle
e19d2d75c5 Added a comment 2020-03-17 02:38:16 +00:00
kyle
ed4d4e5d6f Added a comment 2020-03-17 02:35:49 +00:00
lasitus
abb027a269 Added a comment 2020-03-17 02:15:13 +00:00
lasitus
fee3203723 Added a comment 2020-03-16 22:29:31 +00:00
thk
fb60296885 2020-03-16 20:47:16 +00:00
thk
df9957823f Added a comment: Please close 2020-03-16 20:46:27 +00:00
thk
cf48c140cf Added a comment 2020-03-16 20:42:55 +00:00
yarikoptic
6be7666f9e Added a comment 2020-03-16 19:54:42 +00:00
kyle
7e50500b7c Added a comment: reply: disconnected archive 2020-03-16 18:56:13 +00:00
Joey Hess
73289afdab
comment 2020-03-16 14:37:57 -04:00
Joey Hess
079656e69c
comment 2020-03-16 14:26:34 -04:00
Joey Hess
21ff99db9a
Merge branch 'master' of ssh://git-annex.branchable.com 2020-03-16 14:17:27 -04:00
Joey Hess
cb6604814c
close 2020-03-16 14:16:55 -04:00
Joey Hess
94e1f02e0c
comment 2020-03-16 14:15:00 -04:00
Joey Hess
c913f57d05
comment 2020-03-16 14:08:49 -04:00
Joey Hess
949eaec915
comment 2020-03-16 14:04:55 -04:00
yarikoptic
0db8f552cc Added a comment 2020-03-16 17:57:27 +00:00
Joey Hess
19ae730d91
comment 2020-03-16 13:56:16 -04:00
Joey Hess
e77d1badd5
um 2020-03-16 13:34:11 -04:00
Joey Hess
b5899671f1
followup 2020-03-16 13:26:58 -04:00
Joey Hess
df7d8dbd08
followup 2020-03-16 13:18:50 -04:00
Joey Hess
f203475eae
comment 2020-03-16 13:12:18 -04:00
Joey Hess
c8fec6ab03
Fix a minor bug that caused options provided with -c to be passed multiple times to git. 2020-03-16 13:06:44 -04:00
Joey Hess
b166223d48
moreinfo 2020-03-16 12:45:43 -04:00
Joey Hess
0736508b62
comment 2020-03-16 12:28:08 -04:00
lasitus
4bf0f34d1b 2020-03-16 14:51:51 +00:00
lasitus
7e68606f50 2020-03-16 14:51:12 +00:00
thk
65549c5921 2020-03-16 13:12:01 +00:00
thk
2e506c6e1b 2020-03-16 13:03:56 +00:00
jksrecko
364647c38e Added a comment 2020-03-15 09:54:00 +00:00
thk
cb0aef71a1 2020-03-15 09:36:14 +00:00
thk
2c859b6260 Added a comment: Tor remote does not use stdin 2020-03-15 09:35:18 +00:00
jksrecko
5072930a44 Added a comment 2020-03-15 09:13:27 +00:00
Joey Hess
f4b8b46716
comment 2020-03-14 15:50:37 -04:00
Joey Hess
2dcfef4e45
comment 2020-03-14 15:46:53 -04:00
thk
2f54b19d45 2020-03-14 17:55:43 +00:00
thk
97058e2d4d 2020-03-14 17:12:24 +00:00
thk
b32e69ba45 2020-03-14 11:52:03 +00:00
Ilya_Shlyakhter
05df404212 Added a comment: gsasl dependency 2020-03-11 22:13:47 +00:00
Ilya_Shlyakhter
d821db0b57 Added a comment 2020-03-11 22:00:53 +00:00
Ilya_Shlyakhter
ffef1663cb Added a comment: past versions of annexed files 2020-03-11 21:55:57 +00:00
spwhitton
e36d6ebe53 report bug 2020-03-11 21:41:21 +00:00
Ilya_Shlyakhter
5c88db5b8e Added a comment 2020-03-11 21:34:14 +00:00
thk
a1c29a35be 2020-03-11 20:19:37 +00:00
eric.w@eee65cd362d995ced72640c7cfae388ae93a4234
4e7176fc87 Added a comment 2020-03-11 19:30:32 +00:00
eric.w@eee65cd362d995ced72640c7cfae388ae93a4234
cf98a67b17 Added a comment 2020-03-11 18:21:59 +00:00
Ilya_Shlyakhter
2085f49497 Added a comment 2020-03-11 18:12:09 +00:00
eric.w@eee65cd362d995ced72640c7cfae388ae93a4234
cbb51a71b0 Added a comment 2020-03-11 18:07:32 +00:00
Ilya_Shlyakhter
c30e31b14d Added a comment 2020-03-11 17:32:35 +00:00
eric.w@eee65cd362d995ced72640c7cfae388ae93a4234
27944eda77 Added a comment: make install failing for 8.20200309, any ideas as to why? 2020-03-11 17:26:06 +00:00
eric.w@eee65cd362d995ced72640c7cfae388ae93a4234
9bf51e75c4 Added a comment 2020-03-11 17:13:29 +00:00
eric.w@eee65cd362d995ced72640c7cfae388ae93a4234
aa8838a355 Added a comment: where are the release notes for git annex? 2020-03-11 17:09:47 +00:00
erewhon
740e88c25b Added a comment 2020-03-11 16:11:54 +00:00
kyle
d2571ee35f repeated --config values 2020-03-11 15:25:52 +00:00
lhunath@3b4ff15f4600f3276d1776a490b734fca0f5c245
b85ec0d292 2020-03-11 14:24:18 +00:00
lhunath@3b4ff15f4600f3276d1776a490b734fca0f5c245
db29610247 2020-03-11 14:22:19 +00:00
scinu
5903d925b6 Added a comment 2020-03-11 04:51:17 +00:00
Ilya_Shlyakhter
d6d7348461 added possible bug report: networkbsd flag default differs in stack.yaml and git-annex.cabal 2020-03-11 03:05:33 +00:00
Ilya_Shlyakhter
ad472941de Added a comment 2020-03-10 22:22:45 +00:00
scinu
1faaa6a031 removed 2020-03-10 22:18:17 +00:00
scinu
86fa67cd54 removed 2020-03-10 22:17:47 +00:00
scinu
8712a4d348 Added a comment 2020-03-10 22:17:20 +00:00
scinu
8d46240c58 Added a comment: layout messed up 2020-03-10 22:11:22 +00:00
scinu
a17f8e1440 Added a comment: Double symlinks 2020-03-10 22:06:48 +00:00
thk
b2f99ef77c 2020-03-10 19:59:15 +00:00
thk
c7a7bfba6e 2020-03-10 19:47:17 +00:00
kyle
060f7037e3 Added a comment 2020-03-10 19:30:50 +00:00
sam.nastase@2b4a9b3e5094dab41e0a4de0b808a2697a3e9860
c0aaff0b19 Added a comment 2020-03-10 19:04:35 +00:00
Joey Hess
081ec23211
comment 2020-03-10 13:29:03 -04:00
Ilya_Shlyakhter
3d3837b35a Added a comment: conda 2020-03-10 17:16:31 +00:00
Ilya_Shlyakhter
4aabb1a787 Added a comment: stable url for standalone build 2020-03-10 17:10:33 +00:00
Ilya_Shlyakhter
52ec0466d4 Added a comment 2020-03-10 14:09:34 +00:00
scinu
300a6b72d1 Added a comment: more specifics 2020-03-10 03:49:04 +00:00
eric.w@eee65cd362d995ced72640c7cfae388ae93a4234
9db488e384 2020-03-10 03:02:44 +00:00
eric.w@eee65cd362d995ced72640c7cfae388ae93a4234
c7292e2f87 2020-03-10 02:22:11 +00:00
Ilya_Shlyakhter
522b54ebdc Added a comment 2020-03-10 00:17:46 +00:00
Joey Hess
1fef36c243
Merge branch 'master' of ssh://git-annex.branchable.com 2020-03-09 19:28:02 -04:00
Joey Hess
6faa638f3e
remove confusing sentence 2020-03-09 19:27:05 -04:00
sam.nastase@2b4a9b3e5094dab41e0a4de0b808a2697a3e9860
9ef38c6b4b Added a comment 2020-03-09 22:43:57 +00:00
kyle
4e9a3c95f2 Added a comment: re: rationale 2020-03-09 22:17:51 +00:00
Joey Hess
451b6b825c
add news item for git-annex 8.20200309 2020-03-09 17:08:46 -04:00
Joey Hess
4ce518998a
Fix upgrade failure when a file has been deleted from the working tree 2020-03-09 16:59:18 -04:00
Joey Hess
53f6de1fdb
Merge branch 'master' of ssh://git-annex.branchable.com 2020-03-09 16:50:03 -04:00
Joey Hess
afe72d04ff
fix problems with upgrade of local remotes
Upgrade other repos than the current one by running git-annex upgrade
inside them, which avoids problems with upgrade code making assumptions
that the cwd will be inside the repo being upgraded.

In particular, this fixes a problem where upgrading a v7 repo to v8 caused
an ugly git error message.

I actually could not find a way to make Upgrade.V7 work properly
without changing directory to the remote. Once I got git ls-files to work,
the git cat-file failed because :path can only be used in the current git
repo.
2020-03-09 16:49:28 -04:00
Joey Hess
a4f99765d7
close 2020-03-09 15:47:18 -04:00
Joey Hess
cff20a3beb
response 2020-03-09 15:09:15 -04:00
Ilya_Shlyakhter
6bfcddaa3b Added a comment 2020-03-09 19:05:08 +00:00
Joey Hess
b4933aedbf
response 2020-03-09 14:57:14 -04:00
Joey Hess
3c8eb47d2f
Merge branch 'master' of ssh://git-annex.branchable.com 2020-03-09 14:54:44 -04:00
Joey Hess
d930a2035c
Avoid converting .git file in a worktree or submodule to a symlink when the repository is not a git-annex repository.
This means it will still be a .git file when git-annex init runs. That's
ok, the repo probably contains no annexed objects yet, and even if it does,
git-annex init does not care if symlinks in the worktree don't point to the
objects.

I made init, at the end, run the conversion code. Not really necessary
because the next git-annex command could do it just as well. But, this
avoids commands that don't normally write to the repo needing to write to
it, which might avoid some problem or other, and seems worth avoiding
generally.
2020-03-09 14:54:14 -04:00
sam.nastase@2b4a9b3e5094dab41e0a4de0b808a2697a3e9860
6b5ad18634 Added a comment 2020-03-09 18:47:06 +00:00
Ilya_Shlyakhter
6999af0c21 Added a comment 2020-03-09 18:45:46 +00:00
kyle
c0e7308d01 Added a comment: thanks 2020-03-09 18:29:26 +00:00
Joey Hess
921105f5e0
comment 2020-03-09 14:24:04 -04:00
Joey Hess
1978a24207
Fix bug that caused unlocked annexed dotfiles to be added to git by the smudge filter when annex.dotfiles was not set. 2020-03-09 14:20:02 -04:00
Joey Hess
96ed67671d
v5 too? 2020-03-09 14:02:20 -04:00
Joey Hess
6dbde41709
Merge branch 'master' of ssh://git-annex.branchable.com 2020-03-09 13:54:33 -04:00
Joey Hess
1e46ea1c52
comment 2020-03-09 13:52:07 -04:00
Joey Hess
e57f64ce89
bug report 2020-03-09 13:45:06 -04:00
sam.nastase@2b4a9b3e5094dab41e0a4de0b808a2697a3e9860
707f477cad Added a comment 2020-03-09 17:31:44 +00:00
Joey Hess
798dfa2d1b
comment 2020-03-09 13:14:18 -04:00
scinu
0a725862c3 Added a comment: Problem solved (partially) 2020-03-09 17:00:52 +00:00
Joey Hess
ab114f5f8c
Merge branch 'master' of ssh://git-annex.branchable.com 2020-03-09 12:58:59 -04:00
Joey Hess
5dbdab415e
followup 2020-03-09 12:57:07 -04:00
Joey Hess
6f57392b71
add news item for git-annex 7.20200309 2020-03-09 12:56:18 -04:00
yarikoptic
372b0a222c added a note about historical builds 2020-03-09 16:50:13 +00:00
Joey Hess
6a91471923
GETCONFIG name fix
Fix regression that prevented external special remotes from using GETCONFIG
to query values like "name". (Introduced in version 7.20200202.7.)
2020-03-09 12:38:04 -04:00
Joey Hess
d9bd645bf8
clarify LISTCONFIGS
Apparently some externals use GETCONFIG name, and the documentation as
written can be read to allow it, although IIRC it was not really my
intent to. If someone does do this, they should not include it in
LISTCONFIGS, since git-annex already tracks its own config settings.
2020-03-09 12:34:13 -04:00
Joey Hess
b2c4ca6da1
comment 2020-03-09 12:33:35 -04:00
Joey Hess
6eb52cf5f1
Merge branch 'master' of ssh://git-annex.branchable.com 2020-03-09 12:07:03 -04:00
thk
77b88a76fd 2020-03-08 15:31:32 +00:00
yarikoptic
feec593983 added metadata tot he bug -- datalad 2020-03-08 15:00:14 +00:00
michael.hanke@c60e12358aa3fc6060531bdead1f530ac4d582ec
800e5e7ebf 2020-03-08 08:01:00 +00:00
erewhon
6121fc01ae Added a comment 2020-03-07 23:14:56 +00:00
Ilya_Shlyakhter
5dedcc9953 added todo: add option to disable fsck upgradable key warnings 2020-03-07 21:01:41 +00:00
thk
c9a4443a24 2020-03-07 12:53:37 +00:00
thk
98e7a6078b Added a comment: No clear error message for failing names on NTFS 2020-03-07 12:50:19 +00:00
thk
53c3b1ed5e 2020-03-07 12:16:50 +00:00
thk
5321262958 2020-03-07 11:46:33 +00:00
Ilya_Shlyakhter
639a4a3b71 Added a comment 2020-03-07 01:05:30 +00:00
sam.nastase@2b4a9b3e5094dab41e0a4de0b808a2697a3e9860
8004a41667 Added a comment 2020-03-06 23:34:12 +00:00
erewhon
8f667ad0c6 removed 2020-03-06 23:01:02 +00:00
kyle
69ce4fcd42 Added a comment: re: Invalid option `--include-dotfiles' 2020-03-06 22:56:35 +00:00
erewhon
90ec42b92d Added a comment 2020-03-06 22:53:52 +00:00
sam.nastase@2b4a9b3e5094dab41e0a4de0b808a2697a3e9860
acee2067cf Added a comment: Invalid option `--include-dotfiles' 2020-03-06 22:17:32 +00:00
Ilya_Shlyakhter
82b03249cd added bug report: running git annex commands in worktree of a non-git-annex repo changes the .git 2020-03-06 22:15:51 +00:00
kyle
9fc0e8091d behavior of annexed dotfiles in clone 2020-03-06 22:05:44 +00:00
thk
f10e7be4bb 2020-03-06 17:58:10 +00:00
Joey Hess
e87dc1341e
link to upstream bug report 2020-03-06 13:52:48 -04:00
thk
db9958bfc8 Added a comment: Also no clear error for permission problems 2020-03-06 17:51:20 +00:00
thk
75d382a9f7 2020-03-06 17:38:55 +00:00
Joey Hess
c9ba6b0e20
Merge branch 'master' of ssh://git-annex.branchable.com 2020-03-06 13:16:25 -04:00
Joey Hess
093fde5abd
completed the createDirectoryIfMissing conversion
Remaining calls in the assistant and Annex.Ssh have been audited and are ok.
2020-03-06 12:55:03 -04:00
yarikoptic
be2e839870 initial report on "Too many open files" on OSX 2020-03-05 20:26:48 +00:00
kyle
b078bc6f91 Added a comment: can use copies=groupname:number 2020-03-05 20:26:02 +00:00
kyle
dda1e8a2c8 Added a comment: re: annexing only large dotfiles 2020-03-05 19:56:50 +00:00
erewhon
b6b29a62a7 2020-03-05 19:53:37 +00:00
Joey Hess
b6c14a84ab
Merge branch 'master' of ssh://git-annex.branchable.com 2020-03-05 15:50:42 -04:00
Ilya_Shlyakhter
ebd0447dc2 Added a comment: annexing only large dotfiles 2020-03-05 19:31:37 +00:00
Joey Hess
6d58ca94d6
some easy createDirectoryUnder conversions 2020-03-05 15:20:10 -04:00
Ilya_Shlyakhter
ae61ee34c0 Added a comment: atomic/transactional upgrades 2020-03-05 19:10:16 +00:00
Joey Hess
5b022eea87
implemented createDirectoryUnder 2020-03-05 14:10:34 -04:00
kyle
8f9d480076 annex.dotfiles override 2020-03-05 17:41:11 +00:00
Joey Hess
14dfd297a4
buglist template 2020-03-05 12:34:34 -04:00
Joey Hess
74694ece9b
pagespecs are absolute 2020-03-05 12:33:48 -04:00
Joey Hess
6ed6782c5d
exclude ones tagged needsthought 2020-03-05 12:31:28 -04:00
Joey Hess
f58a87f194
convert roadmap to list todo's that have been tagged confirmed 2020-03-05 12:29:19 -04:00
Joey Hess
a5c5a94bdf
remove done item 2020-03-05 12:26:05 -04:00
Joey Hess
25b80b772f
update 2020-03-05 11:39:42 -04:00
MartinL
daed9cb05c 2020-03-05 06:10:28 +00:00
Joey Hess
8f4e11653d
remove amazon cloud drive, since amazon banned rclone 2020-03-04 22:48:42 -04:00
Joey Hess
baaacc2eb3
layout 2020-03-04 22:45:48 -04:00
Joey Hess
facf488de5
two more services with multiple special remotes 2020-03-04 22:42:33 -04:00
Joey Hess
952c420cae
Merge branch 'master' of ssh://git-annex.branchable.com 2020-03-04 22:33:17 -04:00
Joey Hess
5995eba531
improve special remotes list
In several cases, there's an old, maybe unmaintained special remote,
and rclone also supports the service. I don't know which is better,
so I added tips pages for these, listing both possibilies, so users can
fill in the details.

Added some things listed in special_remotes/rclone that were not
in the cloud provider list, so users will see it supports those.
But, omitted S3 and webdav, since it's probably better for users to use
what's built into git-annex than going via rclone.

The rclone list is out of date apparently, as rclone.org has more,
so I added a note at the bottom for users to check.

This commit was sponsored by Ethan Aubin.
2020-03-04 22:27:56 -04:00
titaniumfiles@5227364ee3e2f9207bc36b6ebb281fc7af6d3c16
4e8fe3d311 2020-03-05 01:01:30 +00:00
Ilya_Shlyakhter
aa91792d41 Added a comment 2020-03-04 21:34:42 +00:00
Joey Hess
97a8ce0191
comment 2020-03-04 17:12:10 -04:00
Ilya_Shlyakhter
8f48ebd8c2 added todo: restore original environment when running external special remotes from standalone git-annex? 2020-03-04 17:39:02 +00:00
Ilya_Shlyakhter
40e1fb9f8a Added a comment 2020-03-04 17:15:58 +00:00
Joey Hess
5b7cf6ab9e
Merge branch 'master' of ssh://git-annex.branchable.com 2020-03-04 13:05:53 -04:00
Joey Hess
88f721549d
Linux standalone: Use md5sum to shorten paths in .cache/git-annex/locales
md5sum is part of busybox, so is probably available unless it were compiled
out. If md5sum (or cut for that matter) is not available, it will
still use the whole path to $base, otherwise hash it.

Of course it's possible for md5sum to be available sometimes and not others
on the same system; in such an event the locales would be built twice for
the same bundle. The cleanup code will delete both sets once that
version of the bundle is upgraded.
2020-03-04 13:04:56 -04:00
Ilya_Shlyakhter
8f413099de Added a comment: locale info caching for standalone git-annex 2020-03-04 17:04:43 +00:00
Joey Hess
4f01a4e2e0
response 2020-03-04 12:57:10 -04:00
Joey Hess
2f76717cfa
automate uploading released tarballs to archive.org 2020-03-04 12:35:20 -04:00
thk
da7256f821 fix formatting 2020-03-04 10:14:29 +00:00
Ilya_Shlyakhter
52dc54e3e2 Added a comment: URL for git-annex-standalone for specific version 2020-03-04 01:33:30 +00:00
amerlyq+annex@12121d70a602f094228689a0a24d348d478a8af1
4da2a67bbe Added a comment: re: shorter symlinks 2020-03-04 00:48:02 +00:00
Ilya_Shlyakhter
a49b255006 Added a comment: id for locale cache 2020-03-03 23:31:55 +00:00
Ilya_Shlyakhter
ab5cf216bd Added a comment: git-annex standalone and long filenames in locale cache 2020-03-03 22:36:42 +00:00
titaniumfiles@5227364ee3e2f9207bc36b6ebb281fc7af6d3c16
121d97f2f0 2020-03-03 22:30:34 +00:00
titaniumfiles@5227364ee3e2f9207bc36b6ebb281fc7af6d3c16
e36ce8f22b 2020-03-03 22:28:38 +00:00
Ilya_Shlyakhter
1de3bade97 Added a comment: minimum git version 2020-03-03 21:15:07 +00:00
lhunath@3b4ff15f4600f3276d1776a490b734fca0f5c245
e5adeb65f5 Added a comment 2020-03-03 20:33:47 +00:00
Ilya_Shlyakhter
4abfdb30e1 Added a comment: re: shorter symlinks 2020-03-03 19:04:03 +00:00
yarikoptic
6e72092d0b Added a comment 2020-03-03 17:48:16 +00:00
thk
e69382150e 2020-03-03 10:56:48 +00:00
http://id.pvgoran.name/
8f112b3157 Added a comment 2020-03-03 04:16:35 +00:00
amerlyq+annex@12121d70a602f094228689a0a24d348d478a8af1
0825a4db52 2020-03-03 03:46:05 +00:00
http://id.pvgoran.name/
0061c36df9 Added a comment 2020-03-03 03:19:01 +00:00
http://id.pvgoran.name/
2a5b640ade Added a comment 2020-03-03 03:16:25 +00:00
http://id.pvgoran.name/
d9b890ba40 Added a comment 2020-03-03 02:11:30 +00:00
yarikoptic
4772acdb44 Added a comment 2020-03-02 20:54:12 +00:00
Joey Hess
41a5c47860
merge 2020-03-02 16:08:31 -04:00
Joey Hess
be8589d5e9
Merge branch 'master' of ssh://git-annex.branchable.com 2020-03-02 15:54:57 -04:00
Joey Hess
5a72e3be18
comment 2020-03-02 15:43:34 -04:00
Joey Hess
a7c09c3586
comment 2020-03-02 15:35:38 -04:00
yarikoptic
815d03475b Added a comment 2020-03-02 19:23:55 +00:00
Joey Hess
dd89832700
comment 2020-03-02 15:02:22 -04:00
Joey Hess
1a8087ace5
respond and close 2020-03-02 14:58:31 -04:00
Joey Hess
701f8cb00b
comment 2020-03-02 14:52:02 -04:00
Joey Hess
716e573514
split up quickcheck tests for hashes and macs
So when one fais, it's clear which one is the problem.
2020-03-02 14:34:48 -04:00
Joey Hess
ddeb7bea99
Merge branch 'master' of ssh://git-annex.branchable.com 2020-03-02 13:48:33 -04:00
Joey Hess
c578e8ebfd
close already fixed bug
and document it in the changelog for the release where it was fixed
2020-03-02 13:47:47 -04:00
Joey Hess
b279cef1a2
comment 2020-03-02 13:17:05 -04:00
yarikoptic
9a2a9fd142 reallocated from repronim to datalad and added a link to the commit which fixed it 2020-03-02 17:04:53 +00:00
Joey Hess
a1934434d5
Merge branch 'master' of ssh://git-annex.branchable.com 2020-03-02 11:55:50 -04:00
Joey Hess
2911c6887c
link 2020-03-02 11:55:34 -04:00
Ilya_Shlyakhter
54d77e94ba Added a comment: adding dotfiles 2020-02-29 21:35:06 +00:00
spwhitton
a025dc23af Added a comment 2020-02-29 16:34:16 +00:00
yarikoptic
b469d6b4f5 Added a comment 2020-02-29 06:10:19 +00:00
http://id.pvgoran.name/
b95f30f611 2020-02-29 05:51:45 +00:00
basile.pinsard@f1a7fae9f3bd9d5282fca11f62ad53b45a8eb317
dba1a09e97 2020-02-28 20:32:26 +00:00
basile.pinsard@f1a7fae9f3bd9d5282fca11f62ad53b45a8eb317
e40f7f3020 Added a comment 2020-02-28 20:20:09 +00:00
Ilya_Shlyakhter
4faf850106 added todo suggestion: trust presence info for specific remotes for specified time 2020-02-28 20:14:26 +00:00
Joey Hess
8b7f69d493
Merge branch 'master' of ssh://git-annex.branchable.com 2020-02-28 15:33:32 -04:00
Joey Hess
41cb7e90a6
comment 2020-02-28 15:32:50 -04:00
yarikoptic
39a463c34a Added a comment 2020-02-28 19:15:22 +00:00
Joey Hess
08feef9952
Merge branch 'master' of ssh://git-annex.branchable.com 2020-02-28 14:58:44 -04:00
Joey Hess
56cb514331
comment 2020-02-28 14:57:49 -04:00
yarikoptic
64531bbaf7 Added a comment 2020-02-28 18:47:27 +00:00
Ilya_Shlyakhter
5b659cebc4 Added a comment: fsck of dead keys 2020-02-28 18:44:21 +00:00
Ilya_Shlyakhter
02f3abb142 added todo request: restore --include-dotfiles as a no-op for backwards compatibility 2020-02-28 18:29:43 +00:00
Joey Hess
2203b0e910
comment 2020-02-28 14:18:09 -04:00
Joey Hess
7ed6392405
comment 2020-02-28 13:58:26 -04:00
Joey Hess
2723165642
comment 2020-02-28 13:54:32 -04:00
Joey Hess
3b36d79c8f
comment 2020-02-28 13:50:45 -04:00
Joey Hess
8bd535b1e5
comment 2020-02-28 13:49:26 -04:00
Joey Hess
39e298f1fa
comment 2020-02-28 13:38:37 -04:00
Joey Hess
457c0c89a8
comment 2020-02-28 13:26:43 -04:00
lykos@d125a37d89b1cfac20829f12911656c40cb70018
e0507812f4 Added a comment 2020-02-28 16:17:08 +00:00
basile.pinsard@f1a7fae9f3bd9d5282fca11f62ad53b45a8eb317
55e95643b2 Added a comment 2020-02-28 15:44:50 +00:00
codecircuit
f56dfe791c Added a comment 2020-02-28 11:29:27 +00:00
codecircuit
f39aa14f62 2020-02-28 11:16:24 +00:00
Ilya_Shlyakhter
e156a2b742 Added a comment: another example of git-annex-fsck reporting dead keys as errors 2020-02-27 21:39:57 +00:00
Ilya_Shlyakhter
957dc80c3f Added a comment: batch presence checking 2020-02-27 20:33:44 +00:00
yarikoptic
8a3a94274f annotate when it was fixed 2020-02-27 17:31:06 +00:00
Joey Hess
eb884085b5
Merge branch 'master' of ssh://git-annex.branchable.com 2020-02-27 11:54:37 -04:00
yarikoptic
18db5a2a91 marking old issue done 2020-02-27 15:53:30 +00:00
yarikoptic
1f50eecbb8 Added a comment 2020-02-27 15:52:10 +00:00
yarikoptic
c579146a3a initial report on annex/objects/.../KEY directory left behind 2020-02-27 15:36:10 +00:00
lykos@d125a37d89b1cfac20829f12911656c40cb70018
2d3ef2c079 Added a comment 2020-02-27 13:12:28 +00:00
lykos@d125a37d89b1cfac20829f12911656c40cb70018
d31fd6cd42 2020-02-27 08:54:34 +00:00
Joey Hess
c089f395b0
Bugfix: Don't ignore --debug when it is followed by -c 2020-02-27 00:52:37 -04:00
Joey Hess
ba4a2d8734
formatting 2020-02-26 19:11:15 -04:00
Joey Hess
ad1b442430
add news item for git-annex 8.20200226 2020-02-26 19:10:09 -04:00
Joey Hess
bfa015ae4e
Merge branch 'v7' 2020-02-26 18:49:36 -04:00
Joey Hess
1b23a18791
devblog 2020-02-26 18:49:07 -04:00
Joey Hess
5b4ba5c6a5
add news item for git-annex 7.20200226 2020-02-26 18:40:45 -04:00
Joey Hess
09b5a77665
retitl 2020-02-26 18:39:09 -04:00
Joey Hess
ce8a034ecd
idea, not impementing today 2020-02-26 18:38:12 -04:00
Joey Hess
535ad3ba75
comment 2020-02-26 18:30:20 -04:00
Joey Hess
66e27f9ed7
Merge branch 'master' of ssh://git-annex.branchable.com 2020-02-26 18:30:08 -04:00
Joey Hess
64639ff9b1
followup and close 2020-02-26 18:29:06 -04:00
Joey Hess
e535da621c
Bugfix to getting content from an export remote with -J, when the export database was not yet populated.
(cherry picked from commit e520341500)
2020-02-26 18:07:20 -04:00
yarikoptic
cef703ccb8 removed 2020-02-26 21:00:18 +00:00
yarikoptic
b49a0ca25a Added a comment 2020-02-26 20:58:16 +00:00
yarikoptic
34d726cba6 Added a comment: --debug output 2020-02-26 20:37:00 +00:00
yarikoptic
80b8b55b09 Added a comment: --debug output 2020-02-26 20:36:28 +00:00
yarikoptic
0651e88a56 Added a comment 2020-02-26 20:14:47 +00:00
yarikoptic
1df33a5b3b initial report on --debug , -c interaction 2020-02-26 19:59:48 +00:00
Joey Hess
fed72e0e8e
comment 2020-02-26 15:24:12 -04:00
basile.pinsard@f1a7fae9f3bd9d5282fca11f62ad53b45a8eb317
264c0c5780 Added a comment 2020-02-26 19:15:11 +00:00
basile.pinsard@f1a7fae9f3bd9d5282fca11f62ad53b45a8eb317
93517d7b70 Added a comment 2020-02-26 19:11:53 +00:00
Joey Hess
30979bcc4c
comment 2020-02-26 15:06:38 -04:00
Joey Hess
e520341500
Bugfix to getting content from an export remote with -J, when the export database was not yet populated. 2020-02-26 14:57:29 -04:00
Joey Hess
cb86caf929
comment 2020-02-26 14:21:35 -04:00
Joey Hess
85d9a810e9
response 2020-02-26 14:08:11 -04:00
yarikoptic
c259aedab5 Added a comment 2020-02-26 17:42:51 +00:00
yarikoptic
f765f3a357 Added a comment: requires -c annex.retry=2 to workaround 2020-02-26 17:34:55 +00:00
basile.pinsard@f1a7fae9f3bd9d5282fca11f62ad53b45a8eb317
5d84564a76 removed 2020-02-26 16:39:22 +00:00
yarikoptic
720a7727a1 issue on a stalled enableremote 2020-02-26 16:20:44 +00:00
basile.pinsard@f1a7fae9f3bd9d5282fca11f62ad53b45a8eb317
3e3d72d803 Added a comment: strace 2020-02-26 15:51:10 +00:00
basile.pinsard@f1a7fae9f3bd9d5282fca11f62ad53b45a8eb317
6988256f68 Added a comment: strace 2020-02-26 15:50:50 +00:00
basile.pinsard@f1a7fae9f3bd9d5282fca11f62ad53b45a8eb317
26e7c935af Added a comment 2020-02-26 13:46:22 +00:00
bvaa
456bff66f8 2020-02-26 10:25:47 +00:00
Joey Hess
5de1abf3da
todo 2020-02-25 17:44:03 -04:00
Joey Hess
9dca87311a
comment 2020-02-25 16:39:07 -04:00
Joey Hess
3497e9e510
comment 2020-02-25 16:16:18 -04:00
Joey Hess
9659f1c30f
annex.security.allowed-ip-addresses ports syntax
Extended annex.security.allowed-ip-addresses to let specific ports of an IP
address to be used, while denying use of other ports.
2020-02-25 15:45:52 -04:00
Joey Hess
4316d92b48
comment 2020-02-25 14:38:55 -04:00
Joey Hess
83f45cbe8e
clarify that the listed IP addresses are in addition to the ones normally allowed 2020-02-25 14:34:39 -04:00
Joey Hess
288e07a416
comment 2020-02-25 13:46:51 -04:00
Joey Hess
b4c4e3b853
correction 2020-02-25 13:42:44 -04:00
Joey Hess
7b8ec5023e
comment 2020-02-25 13:41:42 -04:00
Joey Hess
888f6041a7
Merge branch 'master' of ssh://git-annex.branchable.com 2020-02-25 13:34:57 -04:00
Joey Hess
508b962759
comment 2020-02-25 13:34:16 -04:00
Joey Hess
29df4e75bf
response 2020-02-25 13:22:46 -04:00
basile.pinsard@f1a7fae9f3bd9d5282fca11f62ad53b45a8eb317
e7163c0a1f Added a comment: no traffic getting out 2020-02-25 16:55:25 +00:00
Joey Hess
bd8481b23d
comment 2020-02-25 12:46:01 -04:00
kyle
d536167a03 Added a comment: thanks 2020-02-25 01:20:35 +00:00
Ilya_Shlyakhter
370ce884f3 added todo suggestion: create debug logs but erase them on success 2020-02-24 22:37:51 +00:00
Dan
93af53f0fc Added a comment: Interaction with config annex.synccontent 2020-02-24 21:34:53 +00:00
Joey Hess
1bb32098d6
jump right to v8, don't stop part way
* init --version: When the version given is one that automatically
  upgrades to a newer version, use the newer version instead.
* Auto upgrades from older repo versions, like v5, now jump right to v8.
2020-02-24 13:21:00 -04:00
spwhitton
464eb08a88 fix markup 2020-02-24 14:25:13 +00:00
spwhitton
e3e9939345 add mention of git-annex-unused 2020-02-24 14:24:13 +00:00
spwhitton
7f707e8c64 add Git::Annex 2020-02-24 14:16:55 +00:00
cbaines
b1ca65b732 Add forum post about WrongRequestBodyStreamSize S3 export 2020-02-22 09:40:26 +00:00
basile.pinsard@f1a7fae9f3bd9d5282fca11f62ad53b45a8eb317
ddd3099de9 2020-02-21 21:42:29 +00:00
kyle
c6a66353bb 2020-02-21 21:22:03 +00:00
yarikoptic
835a214de6 Added a comment 2020-02-21 00:07:56 +00:00
yarikoptic
00cbbe2789 original TODO for more flexible security.allowed-ip-addresses 2020-02-21 00:04:30 +00:00
Ilya_Shlyakhter
02dd8ab0be Added a comment: locking granularity 2020-02-20 22:35:34 +00:00
Joey Hess
db9dbc3161
no 2020-02-20 17:45:07 -04:00
Joey Hess
c93824d7f4
Merge branch 'master' of ssh://git-annex.branchable.com 2020-02-20 17:32:33 -04:00
Joey Hess
09df58c4ea
handle keys with extensions consistently in all locales
Fix some cases where handling of keys with extensions varied depending on
the locale.

A filename with a unicode extension would before generate a key with an
extension in a unicode locale, but not in LANG=C, because the extension
was not all alphanumeric. Also the the length of the extension could be
counted differently depending on the locale.

In a non-unicode locale, git-annex migrate would see that the extension
was not all alphanumeric and want to "upgrade" it. Now that doesn't happen.

As far as backwards compatability, this does mean that unicode
extensions are counted by the number of bytes, not number of characters.
So, if someone is using unicode extensions, they may find git-annex
stops using them when adding files, because their extensions are too
long. Keys already in their repo with the "too long" extensions will
still work though, so this only prevents adding the same content with
the same extension generating the same key. Documented this by
documenting that annex.maxextensionlength is a number of bytes.

Also, if a filename has an extension that is not valid utf-8 and the
locale is utf-8, the extension will be allowed now, and an old
git-annex, in the same locale would not, and would also want to
"upgrade" that.
2020-02-20 17:30:25 -04:00
Ilya_Shlyakhter
f8c9b18cb5 added question: creating locks during --batch operations 2020-02-20 21:00:45 +00:00
admin
d1fe9d0d2a Merge branch 'master' of /home/b-git-annex/source 2020-02-20 20:48:37 +00:00
Ilya_Shlyakhter
1b0685eac1 Added a comment: running parallel commands with xargs 2020-02-20 20:48:36 +00:00
Joey Hess
547e1f29b1
Merge branch 'master' of ssh://git-annex.branchable.com 2020-02-20 16:39:48 -04:00
Joey Hess
ba37e62e50
do not file requests as comments on random pages 2020-02-20 16:39:24 -04:00