Is there is a way to replicate this git worktrees structure? #9137
|
I have been using a very specific structure to manage my I wonder if I can replicate this with I also tried to see if The only way I managed to get I'm not married to this workflow, maybe I'm not thinking "the |
Replies: 2 comments 2 replies
|
It sort of looks like you want what Breezy offers by default: each branch is a folder and the repo data is shared at the top level. I'm not sure what you expect Git or |
|
There is no concept of a "bare" repository, but you can Then you can ignore the whole directory and add workspaces: $ echo '*' > .gitignore
$ jj workspace add feature-a -r main
$ ls -a
.jj feature-a |
There is no concept of a "bare" repository, but you can
jj new root()to get a new empty working copy. That's essentially a bare repository.Then you can ignore the whole directory and add workspaces: