Git ignore is not ignoring the netbeans private files

六月ゝ 毕业季﹏ 提交于 2019-11-29 02:13:41

A file which is already tracked would not be ignored: you need to remove from the index first.

git rm --cached private.xml 
git add -u .
git commit -m "Record deletion of private.xml from the index"

(the --cached option make sure the file remains on the disk)

Then you can add it in the .gitignore (no need for '*')

private.xml 

Note: whenever an file is or is not ignored, you can check out which .gitignore rule applies with:

git check-ignore -v -- private.xml
CodeWizard

Your file is already added to the git repo.
Once file is added (not untracked) adding it to .gitignore will not ignore it since its already in the repo so you have to remove it from the repository, commit the deletion of the file and then it will be ignored.

See VonC code above on how to do it.

The important thing to understand is that once the file is already commited, adding it to git ignore will not ignore it.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!