docs: update tutorial to mention jj untrack

I forgot to update the tutorial when I closed #14.
This commit is contained in:
Martin von Zweigbergk 2021-12-01 09:51:40 -08:00
parent 14e7d894f3
commit 698b92adc4

View file

@ -74,10 +74,8 @@ M README.md
```
Note that you didn't have to tell Jujutsu to add the change like you would with
`git add`. You actually don't even need to tell it when you add new files or
remove existing files. However, the flip side of that is that you need to be
careful to keep your `.gitignore` up to date since there's currently no easy way
to say that you want an already added file to not be tracked
(https://github.com/martinvonz/jj/issues/14).
remove existing files. To untrack a path, add it to your `.gitignore` and run
`jj untrack <path>`.
To see the diff, run `jj diff`:
```shell script