This is an automated email from the ASF dual-hosted git repository.
xuanwo pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/opendal.git
The following commit(s) were added to refs/heads/main by this push:
new d0eddb26a No need to copy the whole tree (#6783)
d0eddb26a is described below
commit d0eddb26a527bff2f65d9055d152a88e87813480
Author: Sebb <[email protected]>
AuthorDate: Sat Nov 15 15:03:44 2025 +0000
No need to copy the whole tree (#6783)
---
website/community/release/reference/setup_gpg.md | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/website/community/release/reference/setup_gpg.md
b/website/community/release/reference/setup_gpg.md
index 2c7217df3..0dfd233c3 100644
--- a/website/community/release/reference/setup_gpg.md
+++ b/website/community/release/reference/setup_gpg.md
@@ -133,8 +133,7 @@ The svn repository of the release branch is:
https://dist.apache.org/repos/dist/
Please always add the public key to KEYS in the release branch:
```shell
-svn co https://dist.apache.org/repos/dist/release/opendal opendal-dist
-# As this step will copy all the versions, it will take some time. If the
network is broken, please use svn cleanup to delete the lock before re-execute
it.
+svn co --depth https://dist.apache.org/repos/dist/release/opendal opendal-dist
cd opendal-dist
(gpg --list-sigs [email protected] && gpg --export --armor
[email protected]) >> KEYS # Append your key to the KEYS file
svn add . # It is not needed if the KEYS document exists before.