what folder/files are ignored for git commit | gitignore vue
July 29, 2022 · 2 min read
The path of files or directories in your application are listed in the gitignore file. These files are not committed during git push or commit operations. A New Vuejs applications prototype was created using Vue-CLI, and By default, It generates gitignore files which have the following content. .DS_Store node_modules/ dist/ npm-debug.log If you open your project with Visual Studio Code, it creates some caching files. So you need to add those in the gitignore file....