From 66cedc804e4c9e43e41a6b7c491bbabfc87e2731 Mon Sep 17 00:00:00 2001 From: Martin von Zweigbergk Date: Fri, 17 Dec 2021 15:18:41 -0800 Subject: [PATCH] docs: explain how to untrack a file while keeping it in the working copy Issue #14 was fixed a while ago, but I forgot to update the documentation. --- docs/working_copy.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/docs/working_copy.md b/docs/working_copy.md index 4e09e15c0..af425c328 100644 --- a/docs/working_copy.md +++ b/docs/working_copy.md @@ -15,8 +15,9 @@ will replace the previous working copy revision. Also unlike most other VCSs, added files are implicitly tracked. That means that if you add a new file to the working copy, it will be automatically committed once you run e.g. `jj st`. Similarly, if you remove a file from the working -copy, it will implicitly be untracked. There is no easy way to make it untrack -already tracked files (https://github.com/martinvonz/jj/issues/14). +copy, it will implicitly be untracked. To untrack a file while keeping it in +the working copy, first make sure it's [ignored](#ignored-files) and then run +`jj untrack `. Jujutsu currently supports only one working copy (https://github.com/martinvonz/jj/issues/13).