You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Sep 6, 2021. It is now read-only.
I've seen this several times and it was also reported in #6799.
Open a project in Brackets
Using git on the command line, switch between two widely different branches in the project
Look at Brackets console log
Result:
A dozen or so warnings of the form "Unable to stat changed path: .git... NotFound"
Expected:
We're supposed to ignore churn inside the .git folder, so this is confusing and perhaps unnecessarily scary-looking.
As best I can tell it's actually harmless though: AppShellFileSystem._enqueueChange() fails to stat and then sends the change along to FileSystem anyway, where it is promptly dropped on the floor since that folder is filtered out by the watch-root's filter.
I've seen this several times and it was also reported in #6799.
Result:
A dozen or so warnings of the form "Unable to stat changed path: .git... NotFound"
Expected:
We're supposed to ignore churn inside the .git folder, so this is confusing and perhaps unnecessarily scary-looking.
As best I can tell it's actually harmless though: AppShellFileSystem._enqueueChange() fails to stat and then sends the change along to FileSystem anyway, where it is promptly dropped on the floor since that folder is filtered out by the watch-root's filter.