From a55e78d47ec492f921c26a9813a3eea8c0dee51c Mon Sep 17 00:00:00 2001 From: Satoshi Ebisawa Date: Tue, 17 Mar 2026 23:46:08 +0900 Subject: [PATCH] docs: refresh README examples --- README.md | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 05c25a7..2bbc1ab 100644 --- a/README.md +++ b/README.md @@ -44,15 +44,16 @@ git worktreeinclude apply --from auto Tracked files are never copied, even if listed in `.worktreeinclude`. -Example: +Example for a typical app repo with local env, editor settings, and tool-specific cache: ```gitignore .env -.env.* +.env.local !.env.example .vscode/settings.json -.idea/ +.mise.local.toml +turbo/.cache/ ``` ## Commands @@ -143,8 +144,8 @@ git-worktreeinclude hook print post-checkout }, "actions": [ {"op": "copy", "path": ".env", "status": "done"}, - {"op": "skip", "path": ".vscode/settings.json", "status": "same"}, - {"op": "conflict", "path": ".env.local", "status": "diff"} + {"op": "skip", "path": ".mise.local.toml", "status": "same"}, + {"op": "conflict", "path": ".vscode/settings.json", "status": "diff"} ] } ```