Jujutsu : git compatible but better DVCS
I learnt about Jujutsu from the “Rust in Production” podcast episode about Git Butler
One of the attractive quality about it is that it works with existing git repos 1
First superpower : Start using it with existing git repo locally cloned using
jj git init --git-repo=. 2
This creates a .jj folder in the existing repo. .jj and .git co-exist
peacefully
But I didn’t know that.
So for the first project to try Jujutsu, I jj git cloned my existing repo in a
new folder, so that I have “old” git repo as well as jujutsu repo.