refactor: Improve all git operations, add stash support, add improved pull request flow, add worktree file copy options, address code review comments, add cherry pick options

This commit is contained in:
gsxdsm
2026-02-17 22:02:58 -08:00
parent f4e87d4c25
commit 9af63bc1ef
89 changed files with 6811 additions and 351 deletions

View File

@@ -1383,6 +1383,12 @@ export interface ProjectSettings {
defaultDeleteBranchWithWorktree?: boolean;
/** Auto-dismiss init script indicator after completion (default: true) */
autoDismissInitScriptIndicator?: boolean;
/**
* List of file/directory paths (relative to project root) to copy into new worktrees.
* Useful for files not tracked by git, like .env, local config files, etc.
* Each entry is a relative path from the project root (e.g., ".env", ".env.local", "config/local.json").
*/
worktreeCopyFiles?: string[];
// Session Tracking
/** Last chat session selected in this project */