Reputation: 5396
This was happen first time,
When I commit my one of the file through eclipse it's giving below error while commit. Please advise. What do we mean by "out of date" error.
Update:
See below image, I am just clicking on commit. Nothing else.
Upvotes: 0
Views: 321
Reputation: 5765
The file named 'Redundant Control System.xml' has a newer version in the repository than the one your working copy is based on (called the BASE). Subversion will not allow you to commit a file with a BASE different from the last modified version for the file you're committing in the repository.
You should run an update, deal with any merges or conflicts that result, and attempt your commit again.
This section of the svnbook covers this: http://svnbook.red-bean.com/en/1.7/svn.tour.cycle.html#svn.tour.cycle.commit
Upvotes: 1