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 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 `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 remove existing files. To untrack a path, add it to your `.gitignore` and run
careful to keep your `.gitignore` up to date since there's currently no easy way `jj untrack <path>`.
to say that you want an already added file to not be tracked
(https://github.com/martinvonz/jj/issues/14).
To see the diff, run `jj diff`: To see the diff, run `jj diff`:
```shell script ```shell script