This is an automated email from the ASF dual-hosted git repository.
twice pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/kvrocks-website.git
The following commit(s) were added to refs/heads/main by this push:
new 22faae91 No need to checkout entire tree (#338)
22faae91 is described below
commit 22faae9198c2d6df41e7d695f685e28d9b72ba4a
Author: Sebb <[email protected]>
AuthorDate: Sat Nov 15 15:12:18 2025 +0000
No need to checkout entire tree (#338)
---
community/create-a-release.md | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/community/create-a-release.md b/community/create-a-release.md
index d64c9ce2..31e460f8 100644
--- a/community/create-a-release.md
+++ b/community/create-a-release.md
@@ -211,8 +211,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/kvrocks kvrocks-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=files https://dist.apache.org/repos/dist/release/kvrocks
kvrocks-dist
cd kvrocks-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.