@zenobius/pi-worktrees 0.3.0 → 0.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +3 -2
- package/dist/index.js +723 -719
- package/dist/services/git.d.ts +0 -4
- package/package.json +7 -3
package/README.md
CHANGED
|
@@ -173,11 +173,12 @@ Settings live in `~/.pi/agent/pi-worktrees-settings.json`.
|
|
|
173
173
|
### Matching model
|
|
174
174
|
|
|
175
175
|
For the current repository, settings are resolved in this order:
|
|
176
|
-
|
|
177
176
|
1. Exact URL match in `worktrees`
|
|
178
177
|
2. Most-specific glob match in `worktrees`
|
|
179
|
-
3.
|
|
178
|
+
3. Normalized fallback pattern `"**"`
|
|
180
179
|
|
|
180
|
+
At runtime, the extension normalizes the matcher input map to always include `worktrees["**"]`.
|
|
181
|
+
If not explicitly configured, that fallback is seeded from built-in defaults (`worktreeRoot: "{{mainWorktree}}.worktrees"`, `onCreate: "echo \"Created {{path}}\""`).
|
|
181
182
|
`matchingStrategy` controls ties between equally specific patterns:
|
|
182
183
|
|
|
183
184
|
- `fail-on-tie` (default)
|