How to resolve excessive file changes (10,000+) in Git Source Control #24694
-
My Git is detecting over 10,000 file changes in my project. Unnecessary files (dependencies, build artifacts, IDE configs) are being tracked by Git and these should not be part of version control but are included. I want to reduce the number of tracked files and discard all those. Creating a .gitignore file and using git command doens't help and doing so only resulted in this : what do I do? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
@naehansung You can add a
|
Beta Was this translation helpful? Give feedback.
@naehansung You can add a
.gitignore
file inside the.vscode
folder. If you want to ignore all files in it, you can just put*
in the.gitignore
file..gitignore
: this will ignore all files in a directory