JJ for Gitters
Session
Welcome to Jujutsu
In progress
In Git, you have a "Working Tree" where you edit files, a "Staging Area" where you prepare them, and then you make a "Commit".
In Jujutsu (jj), the Working Copy IS a commit. It's just a commit that is automatically updated as you type.
You are currently looking at your working copy commit (marked with @).
Task: Let's create a change. Create a new file called hello.txt.
Click or type: touch hello.txt or echo 'Hello World' > hello.txt
Complete the task above to continue