0

I want to add the WEB-INF/classes to subversion using Intellij IDEA. It may not be the ideal workflow, but it is the one I must use because of work. Tortoise SVN detects the .class changes, but IDEA only gives me the option to commit .java files.

Any idea why tortoise is seeing the changes but IDEA is not?

Michael
  • 10,124
  • 1
  • 34
  • 49
MarcosTonina
  • 351
  • 1
  • 3
  • 16

2 Answers2

0

The folder might be included in the special svn:ignore property. From the command line run:

cd /path/to/PROJECT/WEB-INF
svn proplist .
svn propget "svn:ignore" .

This will tell you if they are in fact being ignored, should probably do the same test for the classes directory and it's sub-directories.

vinnyjames
  • 2,040
  • 18
  • 26
0

In addition to @vinnyjames 's answer, you can also check that the file is not ignored by IntelliJ itself in Settings > Version Control > Ignored Files.

Bastien Jansen
  • 8,756
  • 2
  • 35
  • 53