How to open a cursor project in 2 different windows at the same time?

How to open a cursor project in 2 different windows at the same time?

IT cannot do this currently then it just loads the same window, is there a workaround for this?

Hey, you can try duplicating your workspace, this option should work.

this still creates two workspaces that are tied together so when i make local changes on one like even switching the branch im on it affects the other. is there any way to have a duplicate workspace to work on two different tickets at once.

check out git work tree

yea look into git worktrees, it’s a way to dedicate a folder for whatever branch you want to track there, so you can cd into that feature branch or open it as a separate IDE workspace

the main caveat is that it only copies git tracked files, so if you have environment files, node_modules or submodules you might need to set up a cursor worktrees.json file with bash commands to set up, install, and clone dependencies