You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I often find myself in the following situation.
I work on a new feature for repo r so I:
$ cd r
$ git worktree add -b new-feature-a features/new-feature-a
$ cd features/new-feature-a
$ git submodule sync
$ foundry i
This process is annoying because I have to sync submodules and install dependencies which is often long, instead I would expect dependencies to be shared across worktrees, or at least cached.