Joey Hess [Wed, 27 Oct 2021 16:21:43 +0000 (12:21 -0400)]
comment
jwodder [Wed, 27 Oct 2021 16:08:30 +0000 (16:08 +0000)]
jkniiv [Tue, 26 Oct 2021 23:55:13 +0000 (23:55 +0000)]
Added a comment
Added a comment
Updated patch
Added a comment
Joey Hess [Tue, 26 Oct 2021 18:58:44 +0000 (14:58 -0400)]
Fix using lookupkey inside a subdirectory
Caused by dirContains ".." "foo" being incorrectly False.
Also added a test of dirContains, which includes all the previous bug fixes
I could find and some obvious cases.
Reversion in version 8.
20211011
Sponsored-by: Brett Eisenberg on Patreon
Joey Hess [Tue, 26 Oct 2021 18:12:35 +0000 (14:12 -0400)]
comment
Joey Hess [Tue, 26 Oct 2021 18:08:56 +0000 (14:08 -0400)]
review
Joey Hess [Tue, 26 Oct 2021 17:43:50 +0000 (13:43 -0400)]
when private journal file exists, still read from git-annex branch
Fix bug that caused stale git-annex branch information to read when
annex.private or remote.name.annex-private is set.
The private journal file should not prevent reading more current
information from the git-annex branch, but used to.
Note that, overBranchFileContents has to do additional work now, when
there's a private journal file, it reads from the branch redundantly
and more slowly.
Sponsored-by: Jack Hill on Patreon
Joey Hess [Tue, 26 Oct 2021 16:11:40 +0000 (12:11 -0400)]
Merge branch 'master' of ssh://git-annex.branchable.com
Lukey [Mon, 25 Oct 2021 10:25:05 +0000 (10:25 +0000)]
Added a comment
Lukey [Mon, 25 Oct 2021 10:16:35 +0000 (10:16 +0000)]
pat [Sun, 24 Oct 2021 22:42:35 +0000 (22:42 +0000)]
Added a comment
Added a comment
jwodder [Sun, 24 Oct 2021 19:21:54 +0000 (19:21 +0000)]
jkniiv [Sun, 24 Oct 2021 15:10:13 +0000 (15:10 +0000)]
still think we should highlight this as new info
username [Sat, 23 Oct 2021 15:53:57 +0000 (15:53 +0000)]
Added a comment
Moved WSL1 guide to a tips page
Added a comment
Added a comment
Joey Hess [Thu, 21 Oct 2021 07:02:16 +0000 (03:02 -0400)]
remove obsolete libgcc1
last seen in debian oldstable
jwodder [Thu, 21 Oct 2021 04:54:26 +0000 (04:54 +0000)]
Added a comment
Added a comment
jwodder [Thu, 21 Oct 2021 01:35:48 +0000 (01:35 +0000)]
Added a comment
Joey Hess [Wed, 20 Oct 2021 19:25:35 +0000 (15:25 -0400)]
comment
Joey Hess [Wed, 20 Oct 2021 19:16:42 +0000 (15:16 -0400)]
Merge branch 'master' of ssh://git-annex.branchable.com
Joey Hess [Wed, 20 Oct 2021 19:12:12 +0000 (15:12 -0400)]
fix build failure on windows
Utility.QuickCheck also has an instance Arbitrary FileID.
It seems that this problem used to be ignored by ghc but now it notices
it.
Added a comment: Same problem with git-annex 8.
20210223
Joey Hess [Wed, 20 Oct 2021 18:51:18 +0000 (14:51 -0400)]
comment
Joey Hess [Wed, 20 Oct 2021 18:12:08 +0000 (14:12 -0400)]
comment
Joey Hess [Wed, 20 Oct 2021 17:57:44 +0000 (13:57 -0400)]
comment
Joey Hess [Wed, 20 Oct 2021 17:48:37 +0000 (13:48 -0400)]
update
Joey Hess [Wed, 20 Oct 2021 17:45:56 +0000 (13:45 -0400)]
oops, I misread, still happens for adjusted branches
Joey Hess [Wed, 20 Oct 2021 17:32:03 +0000 (13:32 -0400)]
linked bugs
Joey Hess [Wed, 20 Oct 2021 17:26:01 +0000 (13:26 -0400)]
changelog
A user tested
0f38ad9a69f07f6c6dfb164ad87ecfd56036496f on WSL, and it
seems to have fixed the problem.
Joey Hess [Wed, 20 Oct 2021 17:24:46 +0000 (13:24 -0400)]
comment
Joey Hess [Wed, 20 Oct 2021 17:12:16 +0000 (13:12 -0400)]
update per other comment
Joey Hess [Wed, 20 Oct 2021 17:07:09 +0000 (13:07 -0400)]
Merge branch 'master' of ssh://git-annex.branchable.com
Joey Hess [Wed, 20 Oct 2021 17:06:51 +0000 (13:06 -0400)]
comment
Joey Hess [Wed, 20 Oct 2021 16:32:46 +0000 (12:32 -0400)]
avoid using a second db connection for writes
This is a potentially breaking change in a very delicate area. However,
examining the code path for writes, I don't see any benefit to opening a
second db connection for them. If the write throws an exception,
commitDb will retry it with a new db connection.
A potential benefit to not opening a second db connection, beyond using
less resources, is it just might avoid problems in WSL with sqlite that
I have hypothesized are caused by multiple db connections.
Commit
5f9eff3f32e0101ee673c3dde221f0f27f32e3c8 explains why it needs to
shut down the db connection to force the database to be updated on disk:
When closeDb does not get called, garbage collection of DbHandle may not
give the workterThread time to cleanly shut down before git-annex exits,
resulting in a recently written change not reaching disk.
Joey Hess [Wed, 20 Oct 2021 16:24:40 +0000 (12:24 -0400)]
eliminate single/multi writer distinction
After commit
f4bdecc4ecce8bcbb2d8ccbb524ba1f3f76565ba, there is no
longer any distinction between SingleWriter and MultiWriter's handling
of read after write.
Databases that were SingleWriter still have lock files that are used to
prevent multiple writers.
This does make writing to such databases a bit more expensive,
because the MultiWriter code path that is now used opens a second db
connection in order to write to them.
Joey Hess [Wed, 20 Oct 2021 16:13:49 +0000 (12:13 -0400)]
improve with continuation
no behavior change
Added a comment
gitannexuser2021 [Tue, 19 Oct 2021 22:37:45 +0000 (22:37 +0000)]
Added a comment: Still seeing the issue.
Joey Hess [Tue, 19 Oct 2021 19:15:29 +0000 (15:15 -0400)]
Merge branch 'master' of ssh://git-annex.branchable.com
Joey Hess [Tue, 19 Oct 2021 19:13:29 +0000 (15:13 -0400)]
improve sqlite MultiWriter handling of read after write
This removes a messy caveat that was easy to forget and caused at least one
bug. The price paid is that, after a write to a MultiWriter db, it has to
close the db connection that it had been using to read, and open a new
connection. So it might be a little bit slower. But, writes are usually
batched together, so there's often only a single write, and so there should
not be much of a slowdown. Notice that SingleWriter already closed the db
connection after a write, so paid the same overhead.
This is the second try at fixing a bug: git-annex get when run as the first
git-annex command in a new repo did not populate all unlocked files.
(Reversion in version 8.
20210621)
Sponsored-by: Boyd Stephen Smith Jr. on Patreon
Lukey [Tue, 19 Oct 2021 17:17:47 +0000 (17:17 +0000)]
Added a comment
Joey Hess [Tue, 19 Oct 2021 17:17:04 +0000 (13:17 -0400)]
Merge branch 'master' of ssh://git-annex.branchable.com
Joey Hess [Tue, 19 Oct 2021 17:16:29 +0000 (13:16 -0400)]
reopen
Joey Hess [Tue, 19 Oct 2021 17:07:49 +0000 (13:07 -0400)]
close keys db to possibly work around WSL1 issue
paperbenni [Tue, 19 Oct 2021 16:45:12 +0000 (16:45 +0000)]
Joey Hess [Tue, 19 Oct 2021 16:43:08 +0000 (12:43 -0400)]
comment
Joey Hess [Tue, 19 Oct 2021 16:26:22 +0000 (12:26 -0400)]
remove xmpp mention
Joey Hess [Tue, 19 Oct 2021 16:03:51 +0000 (12:03 -0400)]
Merge branch 'master' of ssh://git-annex.branchable.com
Joey Hess [Tue, 19 Oct 2021 14:08:28 +0000 (10:08 -0400)]
comment
Atemu [Tue, 19 Oct 2021 13:05:50 +0000 (13:05 +0000)]
Added a comment
Atemu [Tue, 19 Oct 2021 12:26:33 +0000 (12:26 +0000)]
Added a comment
Joey Hess [Mon, 18 Oct 2021 20:27:10 +0000 (16:27 -0400)]
update to lts-18.13
ghc 8.10
Joey Hess [Mon, 18 Oct 2021 20:25:28 +0000 (16:25 -0400)]
avoid warning when built with unix-compat 0.5.3
It re-exports modificationTimeHiRes, and provides a windows version.
Might be worth using that windows version eventually, but I have not
tested it.
Joey Hess [Mon, 18 Oct 2021 20:25:00 +0000 (16:25 -0400)]
rename to avoid warning
a new version of persistent exports an "exists"
username [Mon, 18 Oct 2021 19:54:29 +0000 (19:54 +0000)]
Added a comment
Joey Hess [Mon, 18 Oct 2021 17:14:57 +0000 (13:14 -0400)]
remove osx stack.yaml
The OSX autobuilder is now using github CI, and can use a current
version of ghc, rather than the old one.
Sponsored-by: Dartmouth College's Datalad project
Joey Hess [Mon, 18 Oct 2021 15:57:02 +0000 (11:57 -0400)]
pin aws to revision 0
revision 1 seems to have introduced a build failure
Sponsored-by: Dartmouth College's Datalad project
Joey Hess [Mon, 18 Oct 2021 15:50:33 +0000 (11:50 -0400)]
Merge branch 'master' of ssh://git-annex.branchable.com
Lukey [Mon, 18 Oct 2021 15:36:06 +0000 (15:36 +0000)]
Added a comment
Joey Hess [Mon, 18 Oct 2021 15:11:24 +0000 (11:11 -0400)]
note about encryption/chunking
username [Sun, 17 Oct 2021 22:15:52 +0000 (22:15 +0000)]
Added a comment: directory special remote
Added a comment
Added a comment
Lukey [Sat, 16 Oct 2021 15:27:35 +0000 (15:27 +0000)]
Added a comment
Note about case sensitivity dirs
Update WSL1 instructions
athas@60e56fd42a78bbbce444d175865ce4d66ba1a779 [Fri, 15 Oct 2021 20:53:06 +0000 (20:53 +0000)]
Added a comment: GitHub Actions
Joey Hess [Fri, 15 Oct 2021 17:50:57 +0000 (13:50 -0400)]
update
Joey Hess [Fri, 15 Oct 2021 17:49:41 +0000 (13:49 -0400)]
comment
Joey Hess [Fri, 15 Oct 2021 17:47:43 +0000 (13:47 -0400)]
Merge branch 'master' of ssh://git-annex.branchable.com
Joey Hess [Fri, 15 Oct 2021 17:14:19 +0000 (13:14 -0400)]
comment
Joey Hess [Fri, 15 Oct 2021 16:43:23 +0000 (12:43 -0400)]
comment
athas@60e56fd42a78bbbce444d175865ce4d66ba1a779 [Fri, 15 Oct 2021 16:37:34 +0000 (16:37 +0000)]
Added a comment: Update
athas@60e56fd42a78bbbce444d175865ce4d66ba1a779 [Fri, 15 Oct 2021 16:21:07 +0000 (16:21 +0000)]
removed
athas@60e56fd42a78bbbce444d175865ce4d66ba1a779 [Fri, 15 Oct 2021 16:13:32 +0000 (16:13 +0000)]
Added a comment: Update
athas@60e56fd42a78bbbce444d175865ce4d66ba1a779 [Fri, 15 Oct 2021 16:09:51 +0000 (16:09 +0000)]
Joey Hess [Thu, 14 Oct 2021 16:45:05 +0000 (12:45 -0400)]
When retrival from a chunked remote fails, display the error that occurred when downloading the chunk
Rather than the error that occurred when trying to download the unchunked
content, which is less likely to actually be stored in the remote.
Sponsored-by: Boyd Stephen Smith Jr. on Patreon
Joey Hess [Thu, 14 Oct 2021 16:08:54 +0000 (12:08 -0400)]
followup
Joey Hess [Thu, 14 Oct 2021 16:05:07 +0000 (12:05 -0400)]
remove 3 comments that turned out to be about an unrelated problem which got its own bug report
Joey Hess [Wed, 13 Oct 2021 01:17:13 +0000 (21:17 -0400)]
avoid crashing tilde expansion on user who does not exist
git does not crash when there's a remote configured for a user who does
not exist, and this prevents git-annex from crashing too. Consider that
a user might exist on one system but not another, and the git repo be
moved between systems. So not crashing is desirable.
Note that git fetch seems to mishandle a remote path like ~foo/bar
when the user does not exist. While it does access ./~foo/bar,
and gets as far as running git-upload-pack on the path,
it then complains there is no such repo. So different parts of git seem
to be doing different things in that edge case. Anyway, git-annex does
not need to be bug-for-bug compatible with git.
Sponsored-by: Jack Hill on Patreon
Joey Hess [Tue, 12 Oct 2021 17:42:55 +0000 (13:42 -0400)]
close per comment
Joey Hess [Tue, 12 Oct 2021 17:42:08 +0000 (13:42 -0400)]
open todo
Joey Hess [Tue, 12 Oct 2021 17:22:46 +0000 (13:22 -0400)]
move gpg tmp home to system temp dir
test: Put gpg temp home directory in system temp directory, not filesystem
being tested.
Since I've found indications gpg can fail talking to the agent when the
socket ends up on eg, fat. And to hopefully fix this bug report I've
followed up on.
The main risk in using the system temp dir is that TMPDIR could be set to a
long directory path, which is too long to put a unix socket in. To
partially amelorate that risk, it uses either an absolute or a relative
path, whichever is shorter. (Hopefully gpg will not convert it to a longer
form of the path..)
If the user sets TMPDIR to something so long a path to it +
"S.gpg-agent" is too long, I suppose that's their issue to deal with.
Sponsored-by: Dartmouth College's Datalad project
Joey Hess [Mon, 11 Oct 2021 20:05:34 +0000 (16:05 -0400)]
remove support code for ancient git-annex-shell version
Wow, 5.
20140405.. Yeah, definitely not supported any more, just landed
commits need 6.
20180312.