* docs(i18n): fix cp commands causing duplicate files in some shells
The i18n tutorial and git workflow docs used `cp -r dir/**` which
causes duplicate files in shells like Fish where the glob expands
before the -r flag processes recursively.
Fix by:
- Using `cp -r dir/.` for recursive directory copies
- Removing -r and using single `*` for file pattern copies
Fixes#11158
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
* docs(i18n): use recursive cp for pages to include subfolders
Use `cp -r src/pages/. dest` instead of separate glob commands,
matching the pattern already used for docs and blog copies.
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
* docs(i18n): copy only md/mdx files for pages i18n
Use find to recursively copy only .md and .mdx files from src/pages,
preserving directory structure, instead of copying all files.
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
* Update website/docs/i18n/i18n-git.mdx
---------
Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com>
Co-authored-by: Sébastien Lorber <slorber@users.noreply.github.com>