If I change a bunch of files and then run command git add . it includes all the files along with .gitignore in my commit list.
If I use git rm --chached .gitignore then it is showing as deleted: .gitignore and git add . is adding the deleted .gitignore file
How can I IGNORE .gitignore itself so that git add . command adds only my changes in actual files or directories. 
 
    