0

When trying to do an svn up I get the normal At revision XX even though some files are missing, the missing files do show when doing an svn list example:

$ svn list
> ConditionTest.java
> persistence
$ ls
> persistence
$ svn list
> ConditionTest.java
> persistence/
$ svn up
> Is at revision 55
$ ls
> persistence

The file ConditionTest.java is not added unless manually running svn up ConditionTest.java

What is up? Can't I trust svn anymore? Running svn, version 1.6.6 (r40053)

antonj
  • 101

1 Answers1

1

Is there a property asking to ignore this file ? svn propget svn:ignore . should display that. I don't use svn list, but svn status, with the state of the files.

Dom
  • 6,743
  • 1
  • 20
  • 24