I hid some files of a SVN repo by using the 'Remove from view' option. It's stated that they would show again in case of modification.
https://i.sstatic.net/od4sA.jpg
But now, Eclipse shows conflicts in my project, with absolutely 0 files with conflict.
https://i.sstatic.net/eXufD.jpg
I'm thinking that it might be one of those files, but I can't find any way to show them again. So:
Is there a way to reset the repo view in Eclipse?
Is there another way to see where the conflict stated by Eclipse is coming from? When I use the svn command line, I don't see any conflict..
According to the Eclipse doc the file should reappear in the View if its conflicted:
Remove from View - removes the selected resource from the view. It will reappear in the view if it's synchronization status changes.
File being in conflict should be considered as "synchronization status change", so I think that the removed-from-view file is not the conflicted one. I guess that you have a tree conflict in your working copy.
To determine the conflicted item, run the following command-line against your working copy:
The output of the command will show conflicted items only.