remove a file from GIT control [duplicate]
Solution 1:
Use git rm --cached
to remove from the index but not the working tree.
After that, you should add .classpath
to your .gitignore file, to prevent it from being committed again.
Solution 2:
why git rm delete my file instead of remove from version control ???
Because that's what it says it will do.
$ git help rm
NAME
git-rm - Remove files from the working tree and from the index
SYNOPSIS
git rm [-f | --force] [-n] [-r] [--cached] [--ignore-unmatch] [--quiet]
[--] <file>...
DESCRIPTION
Remove files from the index, or from the working tree and the index.
... When --cached is given,
the staged content has to match either the tip of the branch or the
file on disk, allowing the file to be removed from just the index.
OPTIONS
...
--cached
Use this option to unstage and remove paths only from the index.
Working tree files, whether modified or not, will be left alone.
As Platinum Azure says, use git rm --cached
to only remove it from source control, and use .gitignore
to keep it out and stop it showing in git status
.