DVC uses the .dvc folder to keep records of and information about all your DVC-tracked files and where they are hosted. This folder must be committed to your Git repository in order to work with DVC correctly. Learn more about the .dvc directory here.

If you’re seeing this in a report, then your project’s Git repository is not tracking the ‘.dvc’ folder. To fix this, you may use the following commands:

git add .dvc
git commit -m 'Adds .dvc folder for Data Version Control'
git push