From f7ae32e58257dca7c7eb8288e8284de865fb922d Mon Sep 17 00:00:00 2001 From: tianlj <116049443+uos-ljtian@users.noreply.github.com> Date: Tue, 21 Feb 2023 06:08:24 +0000 Subject: [PATCH] [zh-cn]sync readme.md Sync latest content --- README-zh.md | 28 ++++++++++++++++++++++++---- 1 file changed, 24 insertions(+), 4 deletions(-) diff --git a/README-zh.md b/README-zh.md index 55b457d980..ee45a6aa28 100644 --- a/README-zh.md +++ b/README-zh.md @@ -60,14 +60,34 @@ cd website - Kubernetes 网站使用的是 [Docsy Hugo 主题](https://github.com/google/docsy#readme)。 即使你打算在容器中运行网站,我们也强烈建议你通过运行以下命令来引入子模块和其他开发依赖项: -```bash -# 引入 Docsy 子模块 + +### Windows +```powershell +# 获取子模块依赖 +git submodule update --init --recursive --depth 1 +``` + + +### Linux / 其它 Unix +```bash +# 获取子模块依赖 +make module-init +```