diff --git a/docs/ja/user-guide/environment-variables.md b/docs/ja/user-guide/environment-variables.md
index cd509762..028a5b28 100644
--- a/docs/ja/user-guide/environment-variables.md
+++ b/docs/ja/user-guide/environment-variables.md
@@ -75,6 +75,7 @@ Screwdriver はビルドの過程で利用できる環境変数をエクスポ
|------|---------------|-------------|
| SD_ZIP_ARTIFACTS | false | **オプション:** (`true`/`false`)
artifacts を単一の zip ファイルにしてアップロードします。
**ユースケース:** ビルドで大量の artifacts が生成される場合にアップロード時間を短縮できます。アップロードに失敗する場合は、zipファイルのサイズが処理可能なサイズより大きい可能性があります。
**注意:** このオプションが利用可能かどうかは、クラスタ管理者に問い合わせてください。 |
| USER_SHELL_BIN | sh | ビルド内で実行されるシェルを指定します。`/bin/bash`のように、絶対パスでの指定もできます。サンプルリポジトリ: |
+| GIT_RECURSIVE_CLONE | true | **Options:** (`true`/`false`)
サブモジュールを recursive clone します. |
| GIT_SHALLOW_CLONE | true | **オプション:** (`true`/`false`)
shallow clone します。|
| GIT_SHALLOW_CLONE_DEPTH | 50 | shallow clone する際の履歴を指定されたコミット数までで切り捨てます。 |
| GIT_SHALLOW_CLONE_SINCE | | 指定した日時から始まる履歴の一部でShallow cloneします。設定されている場合、`GIT_SHALLOW_CLONE_DEPTH`よりも優先されます。
`--shallow-since`を利用しており、絶対年代(例: `2019-04-01`)と相対年代(例: `4 weeks ago`)が設定できます。 |
diff --git a/docs/user-guide/environment-variables.md b/docs/user-guide/environment-variables.md
index 297ea092..6ab79e1b 100644
--- a/docs/user-guide/environment-variables.md
+++ b/docs/user-guide/environment-variables.md
@@ -74,6 +74,7 @@ _Note: Environment variables set in one job cannot be accessed in another job. T
|------|---------------|-------------|
| SD_ZIP_ARTIFACTS | false | **Options:** (`true`/`false`)
Compresses and uploads artifacts in a single ZIP file.
**Use case:** Reduces upload time when your build has a lot of artifacts. If the upload fails, it's likely that the zip is too larger to handle.
**Note:** Consult with your cluster admin to see if this option is available. |
| USER_SHELL_BIN | sh | The user shell bin to run the build in. Can also be the full path such as `/bin/bash`. Example repo: |
+| GIT_RECURSIVE_CLONE | true | **Options:** (`true`/`false`)
Clones submodule repositories recursively. |
| GIT_SHALLOW_CLONE | true | **Options:** (`true`/`false`)
Shallow clones source repository. |
| GIT_SHALLOW_CLONE_DEPTH | 50 | Shallow clone with a history truncated to the specified number of commits |
| GIT_SHALLOW_CLONE_SINCE | | Shallow clone with a history truncated starting from the specified datetime (inclusive). If set, this has priority over `GIT_SHALLOW_CLONE_DEPTH`.
This uses `--shallow-since` which accepts both absolute dates (e.g.: `2019-04-01`) and relative dates (e.g.: `4 weeks ago`). |