Home > Back-end >  DVC shows files not tracked in source control in visual studio code
DVC shows files not tracked in source control in visual studio code

Time:09-02

I'm using DVC extension in VScode inside a python project. The problem is that dvc shows files not tracked by dvc in the source control panel! As in the following picture. DVC track only data folder and not the src folder. How can I fix it? Have you also encountered these problems?

enter image description here

CodePudding user response:

The files shown are completely untracked. They are shown in both SCM trees so you can add them to either Git or DVC using inline actions. Once the files are tracked by one of the tools they should only show up under the appropriate tree.

  • Related