I've created .gitignore
file to ignore eclipse files, it looks like this:
target
.classpath
.project
.settings/
The problem is that git status still shows me that those files can be added to stage:
# On branch master
# Untracked files:
# (use "git add <file>..." to include in what will be committed)
#
# .classpath
# .project
# .settings/
nothing added to commit but untracked files present (use "git add" to track)
Any idea why? BTW I'm new git user, I work on Windows.