Replies: 1 comment 1 reply
-
The (It does seem like |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I've recently been working with a tool (Prettier) that scans through all files in the working copy, automatically ignoring everything in
.gitignore
. However, I noticed that it's also scanning through files in the.jj/
directory as well, which isn't helpful and is making it take longer than it should.I checked
git status --ignored
and it clearly lists.jj/
as ignored, but I can't for the life of me figure out howgit
knows to ignore it!Does anyone happen to know what I might be missing? How does
git
know to ignore.jj/
?Beta Was this translation helpful? Give feedback.
All reactions