I had to run
git reset --soft HEAD^
to undo a commit with large files (same issue). Now I can see my files again in VS Code Source Control Explorer(see below)
Problem - I want to remove these files from being added to my repo when committing and then pushing, so I added
/.angular/cache
to my .gitignore file, but that didn't remove the files from the Source Control window.
Question - Do I need to do something else to remove these files from Source Control? ex. unstage each file individually
Source Control in VS Code:
Adding your files to .gitignore alone is not enough.
You should do this:
git update-index --assume-unchanged <file_path>
and add your files to
.gitignore
If you want to do this to a directory, open that directory in your shell (using cd):
and execute this:
git update-index --assume-unchanged $(git ls-files | tr '\n' ' ')