From e3a96177f71f7c28cd6d0ff18c77b8bc2ffb4541 Mon Sep 17 00:00:00 2001 From: Martin von Zweigbergk Date: Wed, 1 Mar 2023 15:23:17 -0800 Subject: [PATCH] docs: Update section about support for .gitignores Issues #65 and #87 were both fixed almost a year ago. --- docs/git-compatibility.md | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/docs/git-compatibility.md b/docs/git-compatibility.md index 4e8b52ebc..729c904b2 100644 --- a/docs/git-compatibility.md +++ b/docs/git-compatibility.md @@ -27,11 +27,10 @@ a comparison with Git, including how workflows are different, see the and [how they interoperate with Git](#branches). * **Tags: Partial.** You can check out tagged commits by name (pointed to be either annotated or lightweight tags), but you cannot create new tags. -* **.gitignore: Partial.** No support for ignores in `.git/info/exclude` - ([#65](https://github.com/martinvonz/jj/issues/65)) or via `core.excludesfile` - config ([#87](https://github.com/martinvonz/jj/issues/87)). Also, it uses a - native implementation, so please report a bug if you notice any difference - compared to `git`. +* **.gitignore: Yes.** Ignores in `.gitignore` files are supported. So are + ignores in `.git/info/exclude` or configured via Git's `core.excludesfile` + config. The `.gitignore` support uses a native implementation, so please + report a bug if you notice any difference compared to `git`. * **.gitattributes: No.** There's [#53](https://github.com/martinvonz/jj/issues/53) about adding support for at least the `eol` attribute. * **Hooks: No.** There's [#405](https://github.com/martinvonz/jj/issues/405)