How to resolve excessive file changes (10,000+) in Git Source Control #24694
Answered
by
karthiknadig
naehansung
asked this question in
Q&A
|
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? |
Answered by
karthiknadig
Jan 7, 2025
Replies: 1 comment 2 replies
|
@naehansung You can add a
|
2 replies
Answer selected by
naehansung
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment


@naehansung You can add a
.gitignorefile inside the.vscodefolder. If you want to ignore all files in it, you can just put*in the.gitignorefile..gitignore: this will ignore all files in a directory