-
I am new to jj and want to give it a try. From my understanding it works currently on top of git (so that others -- or a future me --can do their version control of the repo via git). I have created a new Jujutsu repo with Now I look into my repo but I cannot find any How can others interact with the repo via git? Or do I do anything wrong? Many thanks for any pointers! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 4 replies
-
For the "colocated" repo (created with |
Beta Was this translation helpful? Give feedback.
For the "colocated" repo (created with
jj git init --colocated
, which should be default starting next release I think) you indeed will find.git
in the root of the repo.For the "non-colocated" repo (the one that you created apparently)
jj
places it inside.jj
hierarcy - you can always find it by runningjj git root
.So I would imaging you'll need to call git command like this:
git -C $(jj git root) <git command>