[{"data":1,"prerenderedAt":847},["ShallowReactive",2],{"guide:/guides/claude-code-git-worktrees":3},{"_path":4,"_dir":5,"_draft":6,"_partial":6,"_locale":7,"title":8,"description":9,"tag":10,"date":11,"body":12,"_type":841,"_id":842,"_source":843,"_file":844,"_stem":845,"_extension":846},"/guides/claude-code-git-worktrees","guides",false,"","Claude Code with git worktrees","Git worktrees are the cleanest way to run several Claude Code agents on one repo at once, each on its own branch and folder, never stepping on each other.","Workflow","2026-08-15",{"type":13,"children":14,"toc":831},"root",[15,31,38,67,73,78,158,163,193,214,242,261,267,280,301,307,335,620,633,653,659,664,713,726,732,762,768,773,779,814,825],{"type":16,"tag":17,"props":18,"children":19},"element","p",{},[20,23,29],{"type":21,"value":22},"text","The neat trick for running more than one Claude Code agent on the same project is not more terminals. It is ",{"type":16,"tag":24,"props":25,"children":26},"strong",{},[27],{"type":21,"value":28},"git worktrees",{"type":21,"value":30},". A worktree gives each session its own checkout of the repository, on its own branch, in its own folder, so two agents can never fight over the same files.",{"type":16,"tag":32,"props":33,"children":35},"h2",{"id":34},"what-a-worktree-is",[36],{"type":21,"value":37},"What a worktree is",{"type":16,"tag":17,"props":39,"children":40},{},[41,43,50,52,57,59,65],{"type":21,"value":42},"A normal clone has one working copy. ",{"type":16,"tag":44,"props":45,"children":47},"code",{"className":46},[],[48],{"type":21,"value":49},"git worktree",{"type":21,"value":51}," lets one repository have ",{"type":16,"tag":24,"props":53,"children":54},{},[55],{"type":21,"value":56},"several",{"type":21,"value":58}," working copies at once, each on a different branch, sharing the same history and object store. No re-cloning, no duplicated ",{"type":16,"tag":44,"props":60,"children":62},{"className":61},[],[63],{"type":21,"value":64},".git",{"type":21,"value":66},", and a new worktree costs you a checkout rather than a full fetch.",{"type":16,"tag":32,"props":68,"children":70},{"id":69},"set-one-up-per-task",[71],{"type":21,"value":72},"Set one up per task",{"type":16,"tag":17,"props":74,"children":75},{},[76],{"type":21,"value":77},"From inside your repo, create a worktree and branch per task:",{"type":16,"tag":79,"props":80,"children":84},"pre",{"className":81,"code":82,"language":83,"meta":7,"style":7},"language-bash shiki shiki-themes github-light github-dark","git worktree add ../myapp-feature-a -b feature-a\ngit worktree add ../myapp-bugfix-b  -b bugfix-b\n","bash",[85],{"type":16,"tag":44,"props":86,"children":87},{"__ignoreMap":7},[88,127],{"type":16,"tag":89,"props":90,"children":93},"span",{"class":91,"line":92},"line",1,[94,100,106,111,116,122],{"type":16,"tag":89,"props":95,"children":97},{"style":96},"--shiki-default:#6F42C1;--shiki-dark:#B392F0",[98],{"type":21,"value":99},"git",{"type":16,"tag":89,"props":101,"children":103},{"style":102},"--shiki-default:#032F62;--shiki-dark:#9ECBFF",[104],{"type":21,"value":105}," worktree",{"type":16,"tag":89,"props":107,"children":108},{"style":102},[109],{"type":21,"value":110}," add",{"type":16,"tag":89,"props":112,"children":113},{"style":102},[114],{"type":21,"value":115}," ../myapp-feature-a",{"type":16,"tag":89,"props":117,"children":119},{"style":118},"--shiki-default:#005CC5;--shiki-dark:#79B8FF",[120],{"type":21,"value":121}," -b",{"type":16,"tag":89,"props":123,"children":124},{"style":102},[125],{"type":21,"value":126}," feature-a\n",{"type":16,"tag":89,"props":128,"children":130},{"class":91,"line":129},2,[131,135,139,143,148,153],{"type":16,"tag":89,"props":132,"children":133},{"style":96},[134],{"type":21,"value":99},{"type":16,"tag":89,"props":136,"children":137},{"style":102},[138],{"type":21,"value":105},{"type":16,"tag":89,"props":140,"children":141},{"style":102},[142],{"type":21,"value":110},{"type":16,"tag":89,"props":144,"children":145},{"style":102},[146],{"type":21,"value":147}," ../myapp-bugfix-b",{"type":16,"tag":89,"props":149,"children":150},{"style":118},[151],{"type":21,"value":152},"  -b",{"type":16,"tag":89,"props":154,"children":155},{"style":102},[156],{"type":21,"value":157}," bugfix-b\n",{"type":16,"tag":17,"props":159,"children":160},{},[161],{"type":21,"value":162},"That makes two sibling folders, each on a fresh branch. Open a terminal in each and start Claude Code there:",{"type":16,"tag":79,"props":164,"children":166},{"className":81,"code":165,"language":83,"meta":7,"style":7},"cd ../myapp-feature-a && claude\n",[167],{"type":16,"tag":44,"props":168,"children":169},{"__ignoreMap":7},[170],{"type":16,"tag":89,"props":171,"children":172},{"class":91,"line":92},[173,178,182,188],{"type":16,"tag":89,"props":174,"children":175},{"style":118},[176],{"type":21,"value":177},"cd",{"type":16,"tag":89,"props":179,"children":180},{"style":102},[181],{"type":21,"value":115},{"type":16,"tag":89,"props":183,"children":185},{"style":184},"--shiki-default:#24292E;--shiki-dark:#E1E4E8",[186],{"type":21,"value":187}," && ",{"type":16,"tag":89,"props":189,"children":190},{"style":96},[191],{"type":21,"value":192},"claude\n",{"type":16,"tag":17,"props":194,"children":195},{},[196,198,204,206,212],{"type":21,"value":197},"Now one agent works on ",{"type":16,"tag":44,"props":199,"children":201},{"className":200},[],[202],{"type":21,"value":203},"feature-a",{"type":21,"value":205}," and another on ",{"type":16,"tag":44,"props":207,"children":209},{"className":208},[],[210],{"type":21,"value":211},"bugfix-b",{"type":21,"value":213},", fully isolated. Merge each branch when it is ready, then remove the worktree:",{"type":16,"tag":79,"props":215,"children":217},{"className":81,"code":216,"language":83,"meta":7,"style":7},"git worktree remove ../myapp-feature-a\n",[218],{"type":16,"tag":44,"props":219,"children":220},{"__ignoreMap":7},[221],{"type":16,"tag":89,"props":222,"children":223},{"class":91,"line":92},[224,228,232,237],{"type":16,"tag":89,"props":225,"children":226},{"style":96},[227],{"type":21,"value":99},{"type":16,"tag":89,"props":229,"children":230},{"style":102},[231],{"type":21,"value":105},{"type":16,"tag":89,"props":233,"children":234},{"style":102},[235],{"type":21,"value":236}," remove",{"type":16,"tag":89,"props":238,"children":239},{"style":102},[240],{"type":21,"value":241}," ../myapp-feature-a\n",{"type":16,"tag":17,"props":243,"children":244},{},[245,251,253,259],{"type":16,"tag":44,"props":246,"children":248},{"className":247},[],[249],{"type":21,"value":250},"git worktree list",{"type":21,"value":252}," shows what you currently have, and ",{"type":16,"tag":44,"props":254,"children":256},{"className":255},[],[257],{"type":21,"value":258},"git worktree prune",{"type":21,"value":260}," cleans up entries whose folder you deleted by hand.",{"type":16,"tag":32,"props":262,"children":264},{"id":263},"why-it-beats-sharing-one-checkout",[265],{"type":21,"value":266},"Why it beats sharing one checkout",{"type":16,"tag":17,"props":268,"children":269},{},[270,272,278],{"type":21,"value":271},"Point two agents at the same folder and they will eventually edit the same file in incompatible ways, or one will ",{"type":16,"tag":44,"props":273,"children":275},{"className":274},[],[276],{"type":21,"value":277},"git checkout",{"type":21,"value":279}," under the other. Worktrees remove the whole class of problem: separate folders, separate branches, separate working state. Each agent also gets clean, mergeable history instead of a tangle, and a failed experiment is a folder you delete rather than a branch you have to untangle.",{"type":16,"tag":17,"props":281,"children":282},{},[283,285,291,293,299],{"type":21,"value":284},"One rule the tool enforces: the same branch cannot be checked out in two worktrees at once. If ",{"type":16,"tag":44,"props":286,"children":288},{"className":287},[],[289],{"type":21,"value":290},"git worktree add",{"type":21,"value":292}," refuses, you already have that branch open somewhere. Create a new branch with ",{"type":16,"tag":44,"props":294,"children":296},{"className":295},[],[297],{"type":21,"value":298},"-b",{"type":21,"value":300}," instead.",{"type":16,"tag":32,"props":302,"children":304},{"id":303},"the-untracked-files-problem",[305],{"type":21,"value":306},"The untracked files problem",{"type":16,"tag":17,"props":308,"children":309},{},[310,312,318,320,326,328,333],{"type":21,"value":311},"The one real friction with worktrees is everything git does not track. A fresh worktree has no ",{"type":16,"tag":44,"props":313,"children":315},{"className":314},[],[316],{"type":21,"value":317},".env",{"type":21,"value":319},", no ",{"type":16,"tag":44,"props":321,"children":323},{"className":322},[],[324],{"type":21,"value":325},"node_modules",{"type":21,"value":327},", no build cache, so a naive ",{"type":16,"tag":44,"props":329,"children":331},{"className":330},[],[332],{"type":21,"value":290},{"type":21,"value":334}," gives you a folder that does not run. Wrap the setup in a shell function and it stops being an issue:",{"type":16,"tag":79,"props":336,"children":338},{"className":81,"code":337,"language":83,"meta":7,"style":7},"wt() {\n  local name=\"$1\"\n  local dir=\"../$(basename \"$PWD\")-$name\"\n  git worktree add \"$dir\" -b \"$name\" || return 1\n  cp .env \"$dir/\" 2>/dev/null\n  (cd \"$dir\" && npm install)\n  cd \"$dir\" && claude\n}\n",[339],{"type":16,"tag":44,"props":340,"children":341},{"__ignoreMap":7},[342,355,389,440,501,538,582,611],{"type":16,"tag":89,"props":343,"children":344},{"class":91,"line":92},[345,350],{"type":16,"tag":89,"props":346,"children":347},{"style":96},[348],{"type":21,"value":349},"wt",{"type":16,"tag":89,"props":351,"children":352},{"style":184},[353],{"type":21,"value":354},"() {\n",{"type":16,"tag":89,"props":356,"children":357},{"class":91,"line":129},[358,364,369,374,379,384],{"type":16,"tag":89,"props":359,"children":361},{"style":360},"--shiki-default:#D73A49;--shiki-dark:#F97583",[362],{"type":21,"value":363},"  local",{"type":16,"tag":89,"props":365,"children":366},{"style":184},[367],{"type":21,"value":368}," name",{"type":16,"tag":89,"props":370,"children":371},{"style":360},[372],{"type":21,"value":373},"=",{"type":16,"tag":89,"props":375,"children":376},{"style":102},[377],{"type":21,"value":378},"\"",{"type":16,"tag":89,"props":380,"children":381},{"style":118},[382],{"type":21,"value":383},"$1",{"type":16,"tag":89,"props":385,"children":386},{"style":102},[387],{"type":21,"value":388},"\"\n",{"type":16,"tag":89,"props":390,"children":392},{"class":91,"line":391},3,[393,397,402,406,411,416,421,426,431,436],{"type":16,"tag":89,"props":394,"children":395},{"style":360},[396],{"type":21,"value":363},{"type":16,"tag":89,"props":398,"children":399},{"style":184},[400],{"type":21,"value":401}," dir",{"type":16,"tag":89,"props":403,"children":404},{"style":360},[405],{"type":21,"value":373},{"type":16,"tag":89,"props":407,"children":408},{"style":102},[409],{"type":21,"value":410},"\"../$(",{"type":16,"tag":89,"props":412,"children":413},{"style":96},[414],{"type":21,"value":415},"basename",{"type":16,"tag":89,"props":417,"children":418},{"style":102},[419],{"type":21,"value":420}," \"",{"type":16,"tag":89,"props":422,"children":423},{"style":184},[424],{"type":21,"value":425},"$PWD",{"type":16,"tag":89,"props":427,"children":428},{"style":102},[429],{"type":21,"value":430},"\")-",{"type":16,"tag":89,"props":432,"children":433},{"style":184},[434],{"type":21,"value":435},"$name",{"type":16,"tag":89,"props":437,"children":438},{"style":102},[439],{"type":21,"value":388},{"type":16,"tag":89,"props":441,"children":443},{"class":91,"line":442},4,[444,449,453,457,461,466,470,474,478,482,486,491,496],{"type":16,"tag":89,"props":445,"children":446},{"style":96},[447],{"type":21,"value":448},"  git",{"type":16,"tag":89,"props":450,"children":451},{"style":102},[452],{"type":21,"value":105},{"type":16,"tag":89,"props":454,"children":455},{"style":102},[456],{"type":21,"value":110},{"type":16,"tag":89,"props":458,"children":459},{"style":102},[460],{"type":21,"value":420},{"type":16,"tag":89,"props":462,"children":463},{"style":184},[464],{"type":21,"value":465},"$dir",{"type":16,"tag":89,"props":467,"children":468},{"style":102},[469],{"type":21,"value":378},{"type":16,"tag":89,"props":471,"children":472},{"style":118},[473],{"type":21,"value":121},{"type":16,"tag":89,"props":475,"children":476},{"style":102},[477],{"type":21,"value":420},{"type":16,"tag":89,"props":479,"children":480},{"style":184},[481],{"type":21,"value":435},{"type":16,"tag":89,"props":483,"children":484},{"style":102},[485],{"type":21,"value":378},{"type":16,"tag":89,"props":487,"children":488},{"style":360},[489],{"type":21,"value":490}," ||",{"type":16,"tag":89,"props":492,"children":493},{"style":360},[494],{"type":21,"value":495}," return",{"type":16,"tag":89,"props":497,"children":498},{"style":118},[499],{"type":21,"value":500}," 1\n",{"type":16,"tag":89,"props":502,"children":504},{"class":91,"line":503},5,[505,510,515,519,523,528,533],{"type":16,"tag":89,"props":506,"children":507},{"style":96},[508],{"type":21,"value":509},"  cp",{"type":16,"tag":89,"props":511,"children":512},{"style":102},[513],{"type":21,"value":514}," .env",{"type":16,"tag":89,"props":516,"children":517},{"style":102},[518],{"type":21,"value":420},{"type":16,"tag":89,"props":520,"children":521},{"style":184},[522],{"type":21,"value":465},{"type":16,"tag":89,"props":524,"children":525},{"style":102},[526],{"type":21,"value":527},"/\"",{"type":16,"tag":89,"props":529,"children":530},{"style":360},[531],{"type":21,"value":532}," 2>",{"type":16,"tag":89,"props":534,"children":535},{"style":102},[536],{"type":21,"value":537},"/dev/null\n",{"type":16,"tag":89,"props":539,"children":541},{"class":91,"line":540},6,[542,547,551,555,559,563,567,572,577],{"type":16,"tag":89,"props":543,"children":544},{"style":184},[545],{"type":21,"value":546},"  (",{"type":16,"tag":89,"props":548,"children":549},{"style":118},[550],{"type":21,"value":177},{"type":16,"tag":89,"props":552,"children":553},{"style":102},[554],{"type":21,"value":420},{"type":16,"tag":89,"props":556,"children":557},{"style":184},[558],{"type":21,"value":465},{"type":16,"tag":89,"props":560,"children":561},{"style":102},[562],{"type":21,"value":378},{"type":16,"tag":89,"props":564,"children":565},{"style":184},[566],{"type":21,"value":187},{"type":16,"tag":89,"props":568,"children":569},{"style":96},[570],{"type":21,"value":571},"npm",{"type":16,"tag":89,"props":573,"children":574},{"style":102},[575],{"type":21,"value":576}," install",{"type":16,"tag":89,"props":578,"children":579},{"style":184},[580],{"type":21,"value":581},")\n",{"type":16,"tag":89,"props":583,"children":585},{"class":91,"line":584},7,[586,591,595,599,603,607],{"type":16,"tag":89,"props":587,"children":588},{"style":118},[589],{"type":21,"value":590},"  cd",{"type":16,"tag":89,"props":592,"children":593},{"style":102},[594],{"type":21,"value":420},{"type":16,"tag":89,"props":596,"children":597},{"style":184},[598],{"type":21,"value":465},{"type":16,"tag":89,"props":600,"children":601},{"style":102},[602],{"type":21,"value":378},{"type":16,"tag":89,"props":604,"children":605},{"style":184},[606],{"type":21,"value":187},{"type":16,"tag":89,"props":608,"children":609},{"style":96},[610],{"type":21,"value":192},{"type":16,"tag":89,"props":612,"children":614},{"class":91,"line":613},8,[615],{"type":16,"tag":89,"props":616,"children":617},{"style":184},[618],{"type":21,"value":619},"}\n",{"type":16,"tag":17,"props":621,"children":622},{},[623,625,631],{"type":21,"value":624},"Now ",{"type":16,"tag":44,"props":626,"children":628},{"className":627},[],[629],{"type":21,"value":630},"wt feature-a",{"type":21,"value":632}," gives you a working folder with an agent already running in it. Adapt the middle two lines to your stack: copy whatever your project needs and skip the install if your package manager supports a shared store.",{"type":16,"tag":17,"props":634,"children":635},{},[636,638,644,646,651],{"type":21,"value":637},"Watch out for anything that binds a fixed port. Two worktrees both running ",{"type":16,"tag":44,"props":639,"children":641},{"className":640},[],[642],{"type":21,"value":643},"npm run dev",{"type":21,"value":645}," on port 3000 will collide, so read the port from an environment variable and set a different one per worktree in its ",{"type":16,"tag":44,"props":647,"children":649},{"className":648},[],[650],{"type":21,"value":317},{"type":21,"value":652},".",{"type":16,"tag":32,"props":654,"children":656},{"id":655},"picking-up-an-existing-branch",[657],{"type":21,"value":658},"Picking up an existing branch",{"type":16,"tag":17,"props":660,"children":661},{},[662],{"type":21,"value":663},"Worktrees are not only for new work. To review a colleague's pull request without disturbing whatever your main checkout is in the middle of:",{"type":16,"tag":79,"props":665,"children":667},{"className":81,"code":666,"language":83,"meta":7,"style":7},"git fetch origin\ngit worktree add ../myapp-review feature-x\n",[668],{"type":16,"tag":44,"props":669,"children":670},{"__ignoreMap":7},[671,688],{"type":16,"tag":89,"props":672,"children":673},{"class":91,"line":92},[674,678,683],{"type":16,"tag":89,"props":675,"children":676},{"style":96},[677],{"type":21,"value":99},{"type":16,"tag":89,"props":679,"children":680},{"style":102},[681],{"type":21,"value":682}," fetch",{"type":16,"tag":89,"props":684,"children":685},{"style":102},[686],{"type":21,"value":687}," origin\n",{"type":16,"tag":89,"props":689,"children":690},{"class":91,"line":129},[691,695,699,703,708],{"type":16,"tag":89,"props":692,"children":693},{"style":96},[694],{"type":21,"value":99},{"type":16,"tag":89,"props":696,"children":697},{"style":102},[698],{"type":21,"value":105},{"type":16,"tag":89,"props":700,"children":701},{"style":102},[702],{"type":21,"value":110},{"type":16,"tag":89,"props":704,"children":705},{"style":102},[706],{"type":21,"value":707}," ../myapp-review",{"type":16,"tag":89,"props":709,"children":710},{"style":102},[711],{"type":21,"value":712}," feature-x\n",{"type":16,"tag":17,"props":714,"children":715},{},[716,718,724],{"type":21,"value":717},"When ",{"type":16,"tag":44,"props":719,"children":721},{"className":720},[],[722],{"type":21,"value":723},"feature-x",{"type":21,"value":725}," exists on exactly one remote and not locally, git creates the local branch and sets it to track, so you get a proper checkout rather than a detached head. You can then start an agent there to read the diff and run the tests while your own branch stays exactly as you left it. Delete the folder when you are done reviewing and nothing about your working state has changed.",{"type":16,"tag":32,"props":727,"children":729},{"id":728},"per-worktree-settings",[730],{"type":21,"value":731},"Per-worktree settings",{"type":16,"tag":17,"props":733,"children":734},{},[735,737,743,745,752,754,760],{"type":21,"value":736},"Because each worktree is a normal checkout, it reads the project's ",{"type":16,"tag":44,"props":738,"children":740},{"className":739},[],[741],{"type":21,"value":742},".claude/settings.json",{"type":21,"value":744}," like any other, with the same ",{"type":16,"tag":746,"props":747,"children":749},"a",{"href":748},"/guides/claude-code-settings-json",[750],{"type":21,"value":751},"permissions and hooks",{"type":21,"value":753},". You can also drop a ",{"type":16,"tag":44,"props":755,"children":757},{"className":756},[],[758],{"type":21,"value":759},".claude/settings.local.json",{"type":21,"value":761}," in a specific worktree for a one-off tweak: wider permissions in a throwaway branch, a distinct notification sound per worktree, or a hook that only makes sense while you are on that task. It stays out of git, so it never leaks into the branch you merge.",{"type":16,"tag":32,"props":763,"children":765},{"id":764},"merge-order-matters-more-than-isolation",[766],{"type":21,"value":767},"Merge order matters more than isolation",{"type":16,"tag":17,"props":769,"children":770},{},[771],{"type":21,"value":772},"Worktrees stop agents colliding while they work; they do not stop their branches colliding at merge time. Two sessions that both touch the same module will still produce conflicting diffs. Keep each task scoped to its own area of the codebase, merge the short branches first, and rebase the long-running one on top rather than letting it drift for days. The isolation buys you parallelism, not immunity.",{"type":16,"tag":32,"props":774,"children":776},{"id":775},"the-remaining-problem-attention",[777],{"type":21,"value":778},"The remaining problem: attention",{"type":16,"tag":17,"props":780,"children":781},{},[782,784,790,792,797,799,805,807,812],{"type":21,"value":783},"Worktrees solve ",{"type":16,"tag":785,"props":786,"children":787},"em",{},[788],{"type":21,"value":789},"isolation",{"type":21,"value":791},". They do not solve ",{"type":16,"tag":785,"props":793,"children":794},{},[795],{"type":21,"value":796},"attention",{"type":21,"value":798},": with three or four agents running across three or four folders, the hard part is still spotting which one is blocked on a permission and which just finished. Naming your terminals helps, and you can wire notifications (see ",{"type":16,"tag":746,"props":800,"children":802},{"href":801},"/guides/multiple-claude-code-sessions",[803],{"type":21,"value":804},"running multiple Claude Code sessions",{"type":21,"value":806},"), but the pings pile up and none of them tells you ",{"type":16,"tag":785,"props":808,"children":809},{},[810],{"type":21,"value":811},"which",{"type":21,"value":813}," folder they came from unless you scripted that yourself.",{"type":16,"tag":17,"props":815,"children":816},{},[817,823],{"type":16,"tag":746,"props":818,"children":820},{"href":819},"/",[821],{"type":21,"value":822},"Blooby",{"type":21,"value":824}," closes that last gap with a live mascot per session, so all your worktrees are visible at once in the corner of your screen: the one looking up needs you, the one celebrating just finished. Set up your worktrees, then stop babysitting them.",{"type":16,"tag":826,"props":827,"children":828},"style",{},[829],{"type":21,"value":830},"html .default .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}html.dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}",{"title":7,"searchDepth":129,"depth":129,"links":832},[833,834,835,836,837,838,839,840],{"id":34,"depth":129,"text":37},{"id":69,"depth":129,"text":72},{"id":263,"depth":129,"text":266},{"id":303,"depth":129,"text":306},{"id":655,"depth":129,"text":658},{"id":728,"depth":129,"text":731},{"id":764,"depth":129,"text":767},{"id":775,"depth":129,"text":778},"markdown","content:guides:claude-code-git-worktrees.md","content","guides/claude-code-git-worktrees.md","guides/claude-code-git-worktrees","md",1]