azamsharp
azamsharp

Reputation: 20094

Remove files that should not have been commited

I have a .gitignore file in my project directory and I placed the following entry in the file to not to commit the files in the following folder:

EStudyMongoDb.Integration.Test\

For some reason Git pushed the files to repository anyway!

Anyway! now I want to remove those files that have been pushed to the repository but I don't want to loose my local changes to the files inside the folder. How can I do that?

Upvotes: 2

Views: 162

Answers (2)

baloo
baloo

Reputation: 7775

Replace the \ with / or remove it completely. Use git rm --cached EStudyMongoDb.Integration.Test to remove it from the index

Upvotes: 1

Greg Hewgill
Greg Hewgill

Reputation: 994717

Use git rm --cached to remove the files from the index but not from your working copy. Then, commit the changes.

Upvotes: 2

Related Questions