I'm pretty new to subversion and the docs just aren't making sense to me. I was wondering if someone could break down this error message (from svn st
) into plain English, as well as the other one I get local delete, incoming delete upon merge
.
To be precise about my question:
- What does
local add
(orlocal delete
) refer to? - What does
incoming add
(orincoming delete
) refer to?
What's mystifying to me is that the branch has absolutely nothing to do with the files that receive these errors. In other words, it doesn't add or delete any of these files locally (what I presume local add/delete
means). Besides, if I had deleted the file locally, why would that be in conflict with a deletion in the repo (incoming
) anyway?
Background Information
How I got here: I merged trunk
into my branch
and am trying to commit to my branch.
P.S. I've (tried to) read Managing trunk and feature branches: local delete, incoming delete upon merge, but there's too much terminology. Other questions/answers I've read here on SO don't seem to apply or else are hard to understand.