From 698b92adc47ef5ad6fcbb873c3569535a2347932 Mon Sep 17 00:00:00 2001 From: Martin von Zweigbergk Date: Wed, 1 Dec 2021 09:51:40 -0800 Subject: [PATCH] docs: update tutorial to mention `jj untrack` I forgot to update the tutorial when I closed #14. --- docs/tutorial.md | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/docs/tutorial.md b/docs/tutorial.md index e995d972b..213861f8d 100644 --- a/docs/tutorial.md +++ b/docs/tutorial.md @@ -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 `. To see the diff, run `jj diff`: ```shell script