User Impact

Really, the Subversion client seems to have two difficult—almost contradictory—goals.

First, it needs to make the user experience friendly, which generally means being a bit “sloppy” about deciding what a user can or cannot do. This is why it allows mixed-revision working copies, and why it tries to let users execute local tree-changing operations (delete, add, move, copy) in situations that aren't always perfectly, theoretically “safe” or pure.

Second, the client tries to keep the working copy in correctly in sync with the repository using as little communication as possible. Of course, this is made much harder by the first goal!

So in the end, there's a tension here, and the resolutions to problems can vary. In one case (the “lagging directory”), the problem can be solved through a bit of clever entry tracking in the client. In the other case (“the overeager directory”), the only solution is to restrict some of the theoretical laxness allowed by the client.