Joey Hess
b3345eb4ab
close
2020-10-22 12:03:13 -04:00
nix.zahlen@1211ac6c964ba2d68b70655f747bef1383032e77
3b740ac4dc
Added a comment: cannot find this mentioned Windows build :|
2020-10-21 20:46:37 +00:00
nix.zahlen@1211ac6c964ba2d68b70655f747bef1383032e77
a9cec7a810
2020-10-21 20:44:23 +00:00
edward
c20be8d09b
Fix a broken link
2020-10-21 19:22:57 +00:00
Lukey
d7b95e363e
Added a comment
2020-10-21 19:10:01 +00:00
ericm
4816cfc104
2020-10-21 18:18:25 +00:00
Joey Hess
b7835701c8
Merge branch 'master' of ssh://git-annex.branchable.com
2020-10-21 10:32:24 -04:00
Joey Hess
02d5466c23
devblog
2020-10-21 10:32:08 -04:00
Joey Hess
0133b7e5a8
move: Improve resuming a move that was interrupted after the object was transferred
...
In cases where numcopies checks prevented the resumed move from dropping
the object from the source repository, it now relies on a log of recent
moves to replicate the behavior of the interrupted command.
Performance: Probably noticable impact, since it has to add to the log,
check the log, and remove from the log. Seems worth it to avoid this
annoying edge case. The log functions are pretty well optimised to avoid
unncessary work.
An performance improvement to make later would be to avoid cleanup doing
anything if it's not written to the log file, and has confirmed that the
log file does not contain the log line.
This commit was sponsored by Jake Vosloo on Patreon.
2020-10-21 10:31:56 -04:00
achilleas.k@14be77d42a1252fab5ec9dbf4e5ea03c5833e8c8
9f69a68ed7
removed
2020-10-21 07:51:58 +00:00
achilleas.k@14be77d42a1252fab5ec9dbf4e5ea03c5833e8c8
fd30262fb3
Added a comment
2020-10-21 07:51:37 +00:00
achilleas.k@14be77d42a1252fab5ec9dbf4e5ea03c5833e8c8
bdc7f63c21
Added a comment
2020-10-21 07:51:13 +00:00
yarikoptic
8f261113f3
report/idea on minting chunked keys to try from special remote
2020-10-20 23:31:22 +00:00
yarikoptic
fa686784f1
Added a comment
2020-10-20 16:39:15 +00:00
kyle
7c78321770
Added a comment
2020-10-20 15:59:26 +00:00
ericm
ad86a25c58
Added a comment
2020-10-20 13:45:10 +00:00
achilleas
fb2bd67f76
New bug report
2020-10-20 12:51:55 +00:00
yarikoptic
b6f70c2876
Added a comment
2020-10-20 12:33:29 +00:00
yarikoptic
1a5fc2667f
Added a comment
2020-10-20 12:29:19 +00:00
Joey Hess
7036d0a4c1
add, import: Fix a reversion in 7.20191009 that broke handling of --largerthan and --smallerthan
...
This commit was sponsored by Jochen Bartl on Patreon.
2020-10-19 15:36:18 -04:00
Joey Hess
b390a4012c
bug
2020-10-19 15:24:38 -04:00
Joey Hess
f8b0be1f93
comment
2020-10-19 15:04:52 -04:00
Joey Hess
b9c02b29fe
Merge branch 'master' of ssh://git-annex.branchable.com into master
2020-10-19 14:57:30 -04:00
Joey Hess
15ea0e6c0a
design done
2020-10-19 14:57:02 -04:00
Joey Hess
5009c1ce68
update
2020-10-19 14:49:16 -04:00
ericm
9d70cd5def
2020-10-19 18:33:57 +00:00
Joey Hess
c337b58caf
more thoughts
2020-10-19 14:19:41 -04:00
Joey Hess
b2c5c99506
comment
2020-10-19 13:12:07 -04:00
Joey Hess
f1398a1a92
comment
2020-10-19 13:04:03 -04:00
Joey Hess
bdb6d8581c
comment
2020-10-19 12:37:40 -04:00
Joey Hess
3c6cfacb19
Merge branch 'master' of ssh://git-annex.branchable.com into master
2020-10-19 12:19:33 -04:00
Joey Hess
e408658eaa
close
2020-10-19 12:16:15 -04:00
Ilya_Shlyakhter
1ac3735ac9
Added a comment: copying directly from directory special remote to the cloud
2020-10-18 21:00:59 +00:00
Ilya_Shlyakhter
6ee7ccb7bd
Added a comment: building the standalone distribution on CentOS
2020-10-16 14:58:42 +00:00
yarikoptic
4f45051a2f
Added a comment
2020-10-16 01:50:39 +00:00
yarikoptic
9910b8a513
Added a comment
2020-10-16 01:29:23 +00:00
edward
fd80a4e43d
Fix typo
2020-10-15 19:10:58 +00:00
yarikoptic
361b9d719a
initial report
2020-10-15 16:43:06 +00:00
Lukey
3d686af1e1
Added a comment
2020-10-15 14:46:33 +00:00
fbaca1610@41d03d827c5fd52d594eef456b6196c057c0944f
b18130e24b
Added a comment: dropunused and copies
2020-10-15 10:19:17 +00:00
Joey Hess
e4a8b7b26f
comment
2020-10-13 18:57:30 -04:00
Joey Hess
e726aee7be
devblog
2020-10-13 18:41:47 -04:00
Joey Hess
c8995b040f
devblog
2020-10-13 16:46:32 -04:00
Joey Hess
9a5cd96f0d
Fix a memory leak introduced in the last release
...
The problem was this line:
cleanup = and <$> sequence (map snd v)
That caused all of v to be held onto until the end, when the cleanup action
was run.
I could not seem to find a bang pattern that avoided the leak, so I
resorted to a IORef, rather clunky, but not a performance problem because
it will only be written once per git ls-files, so typically just 1 time.
This commit was sponsored by Mark Reidenbach on Patreon.
2020-10-13 16:31:01 -04:00
Joey Hess
d41795c8ff
blew a day investigating this and still don't understand it fully
2020-10-13 15:33:59 -04:00
Joey Hess
cf0ff9f53d
comment
2020-10-13 12:24:13 -04:00
Joey Hess
b72a5c0680
Merge branch 'master' of ssh://git-annex.branchable.com into master
2020-10-12 16:14:51 -04:00
Joey Hess
21d8660006
comment
2020-10-12 16:12:24 -04:00
Joey Hess
db1def72ee
comment
...
This commit was sponsored by Ethan Aubin.
2020-10-12 16:07:30 -04:00
Maximilian
c61d282b72
Added a comment
2020-10-12 19:53:27 +00:00
Joey Hess
4124862ae0
comment
...
This commit was sponsored by Ethan Aubin.
2020-10-12 15:47:46 -04:00
Joey Hess
8e7eeb753d
comment
2020-10-12 15:10:57 -04:00
Joey Hess
61c75eb91e
comment
2020-10-12 15:03:18 -04:00
Joey Hess
53fe434498
close as notabug
2020-10-12 14:50:38 -04:00
Joey Hess
b14eb513a7
Merge branch 'master' of ssh://git-annex.branchable.com into master
2020-10-12 14:49:36 -04:00
Joey Hess
fc16057f99
profiling
...
Currently a bit stuck, but at least starting to get some clues on this
memory leak.
This commit was sponsored by Ethan Aubin.
2020-10-12 14:48:26 -04:00
Lukey
8dc1f3e7d5
Added a comment
2020-10-12 17:20:37 +00:00
mhauru
b574731682
Added a comment
2020-10-12 17:07:58 +00:00
Joey Hess
81216931c6
comment
2020-10-12 12:32:53 -04:00
yarikoptic
9677814e5d
Added a comment
2020-10-12 16:00:32 +00:00
Joey Hess
5157dd8370
comment
2020-10-12 11:41:58 -04:00
Joey Hess
842fc46ee2
Merge branch 'master' of ssh://git-annex.branchable.com into master
2020-10-12 11:35:40 -04:00
Lukey
308e5b3a81
Added a comment
2020-10-11 14:17:47 +00:00
Lukey
19be09d284
Added a comment
2020-10-11 14:08:27 +00:00
Lukey
6db0a18e6f
Added a comment
2020-10-11 14:01:35 +00:00
yarikoptic
89396bb710
Added a comment
2020-10-11 13:51:28 +00:00
Joey Hess
a7a1fdc8cd
Merge branch 'master' of ssh://git-annex.branchable.com into master
2020-10-10 10:40:35 -04:00
Maximilian
c45260f843
2020-10-10 09:11:21 +00:00
Joey Hess
c1bfaf29e4
comment
2020-10-09 20:24:56 -04:00
Joey Hess
1be229c6ae
this was closed a long time ago, but a rename made it re-appear
2020-10-08 14:36:36 -04:00
Joey Hess
d54dd0ef9c
Fix build on Windows with network-3
...
inet_addr was removed, but all this needs is localhost, so hardcoding it
should work fine.
It may be that this windows ifdef is no longer needed. It was added in 2013
with a note that getAddrInfo didn't work on windows, but it seems likely
such a problem would have been fixed since.
2020-10-08 10:50:39 -04:00
Joey Hess
46bb8b90b3
Merge branch 'master' of ssh://git-annex.branchable.com into master
2020-10-08 10:38:15 -04:00
Joey Hess
46371797ec
design for finally slaying this beast
...
This commit was sponsored by Ethan Aubin.
2020-10-08 10:09:12 -04:00
jwodder
d4cb2e044b
2020-10-08 13:02:20 +00:00
jwodder
37f13dfd58
Added a comment
2020-10-08 12:44:52 +00:00
Joey Hess
7fcbb92dfe
add news item for git-annex 8.20201007
2020-10-07 14:18:57 -04:00
Joey Hess
2d5036e440
renamed some filenames to not end with a period
...
Windows does not allow such filenames, which prevented cloning git-annex
on windows.
2020-10-07 12:12:53 -04:00
Joey Hess
20f86e43f7
Fix a build failure on Windows.
2020-10-07 12:04:54 -04:00
git-annex.branchable@f45632a8044327f7993eb5b462c37b76ae48cb10
8c6f21c348
2020-10-07 15:01:06 +00:00
git-annex.branchable@f45632a8044327f7993eb5b462c37b76ae48cb10
20c7e6cf94
2020-10-06 19:19:44 +00:00
Joey Hess
995607b6db
response
2020-10-06 10:54:10 -04:00
Joey Hess
a10f2616c4
close
2020-10-06 10:24:09 -04:00
Joey Hess
10ec4aa7cb
Merge branch 'master' of ssh://git-annex.branchable.com into master
2020-10-06 10:07:48 -04:00
Joey Hess
4795bd7238
update
2020-10-06 10:07:27 -04:00
yarikoptic
95d02d6e29
Added a comment
2020-10-06 01:27:01 +00:00
yarikoptic
b98d601bfb
Added a comment: FTR
2020-10-06 00:04:38 +00:00
yarikoptic
8035e2073d
Added a comment
2020-10-05 23:17:08 +00:00
yarikoptic
ed7a0c9956
Added a comment: just comments
2020-10-05 23:11:32 +00:00
Joey Hess
2daa28c05f
comment
2020-10-05 15:19:48 -04:00
Joey Hess
471bcfaf37
comment
2020-10-05 14:51:19 -04:00
Joey Hess
2c68c60961
comment
2020-10-05 14:38:29 -04:00
Joey Hess
8c9a38a91f
Merge branch 'master' of ssh://git-annex.branchable.com into master
2020-10-05 14:37:33 -04:00
Joey Hess
36ebcd94aa
fix confirmed
2020-10-05 14:36:36 -04:00
kyle
a39f9e8c7f
Added a comment
2020-10-05 18:09:07 +00:00
Joey Hess
f0ec725234
include buildid in LOCPATH
...
This avoids the possibility that the bundle could be updated in place,
leading to LOCPATH existing but containing locales for the old version,
which needed to be tested for with code that was not race-free.
LOCPATH/buildid is still written and checked when cleaning up stale caches.
That is not actually necessary, except old versions of the standalone
bundle expect to see it, and this prevents them cleaning up the locale
cache of a new version. And still checking it prevents the new version
cleaning up the locale cache of the old version while the old version is
still in use.
Added explicit tests before creating LOCPATH and the base and buildid files.
The buildid file no longer needs to be updated every time, because it's
stable for the given LOCPATH directory.
And the base file actually did not need to be updated every time,
because the LOCPATH is derived from base, so if the bundle is moved
elsewhere, a different LOCPATH will be used.
Transitioning to this will mean that two git-annex builds that otherwise
have the same buildid -- the same git-annex md5sum -- will use different
LOCPATH values, but that's handled fine by the cache cleanup code, so at
most it will mean one extra generation of the locale files.
2020-10-05 14:04:49 -04:00
yarikoptic
0bb7569e1c
Added a comment
2020-10-05 18:02:51 +00:00
kyle
64ca40e11c
Added a comment
2020-10-05 17:42:26 +00:00
Joey Hess
9e12e4c419
comment
2020-10-05 12:57:16 -04:00
Joey Hess
cd9a60bc7d
runshell: Fix a edge case where rm errors were sent to stdout, which could confuse things parsing git-annex output.
2020-10-05 12:44:40 -04:00
Joey Hess
3363cc7515
Merge branch 'master' of ssh://git-annex.branchable.com into master
2020-10-05 12:37:43 -04:00