ovod
ovod

Reputation: 1178

Eclipse can not commit all files to Git

I have project in eclipse. I was developing it. Everything was fine. I use git to commit changes.

But starting from some point I noticed that not all files in git repository are committed.
When I do commit, git just do not show it under list of available files. I have tried to commit each file - no result, tried "add to index" - no result.
Does somebody know what can be the reason? I have such problem first time.

And no tracking symbol ">" appears.

Upvotes: 1

Views: 461

Answers (1)

VonC
VonC

Reputation: 1323503

In order to see if there is an issue with a .gitignore, switch back to the command line, and type:

git check-ignore -v -- yourFile

You will immediately see if one of the .gitignore rules applies to it or not.

Upvotes: 1

Related Questions