Commit graph

46745 commits

Author SHA1 Message Date
Joey Hess
26da11aaed
comment 2025-04-21 12:57:36 -04:00
Joey Hess
78684c6c2e
fix close 2025-04-21 12:10:17 -04:00
Joey Hess
fe2de5dddc
update 2025-04-21 12:08:03 -04:00
Joey Hess
d55ccf3108
comment 2025-04-21 11:55:21 -04:00
liam
3b58d7e643 Added a comment: Fetch from good repo to fix uuid.log issue 2025-04-20 12:32:32 +00:00
liam
87aeb82f01 Added a comment: Repairing repositories on MacOS 2025-04-20 02:49:48 +00:00
liam
227f173b18 Added a comment: Corruption? invalid object for uuid.log 2025-04-20 02:32:45 +00:00
puck
830c0390a5 Added a comment: Better error message 2025-04-20 01:52:45 +00:00
Joey Hess
301271db37
add news item for git-annex 10.20250416 2025-04-16 13:34:57 -04:00
Joey Hess
b22a72cd94
releasing package git-annex version 10.20250416 2025-04-16 13:34:49 -04:00
kxra@ae0f8ab3caa4ebebe6b1a121dd41b6751182360e
eaf3a55a40 https://github.com/pulsejet/ownly/issues/49 2025-04-16 13:17:06 +00:00
kxra@ae0f8ab3caa4ebebe6b1a121dd41b6751182360e
4d96683f1d Added a comment 2025-04-15 21:23:58 +00:00
kxra@ae0f8ab3caa4ebebe6b1a121dd41b6751182360e
287172f9f5 http://www.lists.cs.ucla.edu/pipermail/ndn-interest/2025-April/003065.html 2025-04-15 21:23:33 +00:00
alex@5879ea369269daf3c1bd734246d83dd55d12f2da
f48013fe43 Added a comment: yt-dlp did not put any media in its work directory 2025-04-15 14:15:37 +00:00
Joey Hess
ea56036a72
prep for release tomorrow 2025-04-15 09:53:58 -04:00
Joey Hess
af42271d37
comment, delink, close as dup 2025-04-15 09:48:16 -04:00
Kyra
33e21b1414 https://github.com/named-data-mobile/ndn-photo-app/issues/186 2025-04-12 19:01:38 +00:00
Kyra
a9b9911fd0 https://github.com/JonnyKong/GitSync/issues/2 2025-04-12 18:56:32 +00:00
Joey Hess
c5b0ca8982
comment 2025-04-11 13:25:41 -04:00
Joey Hess
5c9a6af5f8
Merge branch 'master' of ssh://git-annex.branchable.com 2025-04-11 13:22:41 -04:00
Joey Hess
f0123ec43a
done 2025-04-11 13:22:20 -04:00
Joey Hess
f0a8d5ea17
Merge branch 'master' into maskremote 2025-04-11 13:19:19 -04:00
Joey Hess
9024d8e2d1
fixes for enabling and autoenabling mask special remotes 2025-04-11 13:18:23 -04:00
Joey Hess
f553cf411b
avoid cycles 2025-04-11 12:49:32 -04:00
Joey Hess
b81126ca48
does not support export or import 2025-04-11 12:42:49 -04:00
Joey Hess
90c502e675
mask special remote working
Still needs some handling of edge cases, cycles, etc.
2025-04-11 11:18:05 -04:00
Joey Hess
d416107c7d
improve comment 2025-04-11 11:17:09 -04:00
tomdhunt
9c236f1d79 2025-04-10 20:37:48 +00:00
tomdhunt
e9e073ec8c Added a comment 2025-04-10 20:25:30 +00:00
Joey Hess
1313cc4d60
mask remotes, partial implementation
Everything implemented except for passing through to the masked remote.
Which should be trivial.
2025-04-10 13:10:07 -04:00
msz
968bac2c14 Added a comment 2025-04-10 16:56:50 +00:00
Joey Hess
89fccc15a8
page for mask remotes
documentation only so far
2025-04-09 13:53:54 -04:00
Joey Hess
ecebdec2c6
update 2025-04-09 13:42:19 -04:00
Joey Hess
e2090dd0f1
sort special remote type list 2025-04-09 13:26:22 -04:00
Joey Hess
edc171bc5f
comment 2025-04-09 12:05:29 -04:00
Joey Hess
a69fc4b04a
comment and close 2025-04-09 11:13:49 -04:00
Joey Hess
1d71cd415b
Merge branch 'master' of ssh://git-annex.branchable.com 2025-04-09 11:10:30 -04:00
matrss
f86370693b Spoke with mih and he said this could be useful in the project context 2025-04-08 11:26:29 +00:00
msz
96b4292fb3 Added a comment 2025-04-07 17:06:15 +00:00
yannick
1cf19bda01 Added a comment: you're cool 2025-04-07 11:13:44 +00:00
Joey Hess
d039379a08
update to nightly-2025-04-04 2025-04-04 20:16:43 -04:00
cjmarkie
92f8620aff Added a comment 2025-04-04 01:14:55 +00:00
Joey Hess
8a402a6e9d
improve changelog
That was a fix for git remotes that use an url with a user name that is URL encoded

For example, "ssh://%6Aoey@localhost/path"

Of course, this is more likely to occur if the username is not all ASCII
like mine is.

And it could also happen when a scp-style url's username contains a non-ASCII
character, which gets URL encoded when git-annex internally converts that
to a ssh:// url.
2025-04-02 15:31:10 -04:00
Joey Hess
bb04d1e71f
URL decoding for username and path
* Support git remotes that use an url with a user name that is URL encoded.
* Fix git-lfs special remote ssh endpoint discovery when the repository
  path is URL encoded.

In the previous commit, Git.Url.host was made to do URL decoding. That made
me wonder, what about URL encoded username and path? And so to these two
additional fixes. Note that Git.Url.authority remains URL encoded. That
seems ok given how it's used.
2025-04-02 15:29:46 -04:00
Joey Hess
ff520b06ac
Support git remotes that use a IPV6 link-local address with a zone ID
Fixed 3 problems, and it seems to work now for both forms:

ssh://[fe80::7697:xxx:xxxx:xxxx%wlp3s0]/foo
fe80::7697:xxx:xxxx:xxxx%wlp3s0:foo
2025-04-02 15:11:54 -04:00
Joey Hess
cb4cdaab75
comment 2025-04-01 10:54:03 -04:00
Joey Hess
7fb413189a
migrate: Fix --remove-size to work when a file is not present
5f74a45861 added this bug
2025-04-01 10:47:31 -04:00
Joey Hess
5f74a45861
comment 2025-04-01 10:36:50 -04:00
Joey Hess
e81fd72018
Added remote.name.annex-web-options config
Which is a per-remote version of the annex.web-options config.

Had to plumb RemoteGitConfig through to getUrlOptions. In cases where a
special remote does not use curl, there was no need to do that and I used
Nothing instead.

In the case of the addurl and importfeed commands, it seemed best to say
that running these commands is not using the web special remote per se,
so the config is not used for those commands.
2025-04-01 10:17:38 -04:00
Joey Hess
932fac7772
response 2025-04-01 09:36:09 -04:00