I’m looking for .svn folder content description or specification. Could you suggest something? I’m going to write an app which operates with working directory.
Thank you!
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Well, the SVN book has a basic overview of the
.svnmetadata, at least in terms of what’s in there, but it’s not byte-for-byte specification. Whether such a thing actually exists anywhere (aside from in the Subversion source code), I don’t know.However, the book goes on to mention that, “Developers are encouraged to use Subversion’s public APIs, or the tools that Subversion provides, to access and manipulate the working copy data, instead of directly reading or modifying those files.”
Is this an option? You might be able to use tools such as
svn info,svn stat,svn diff, orsvnlookto see what’s going on and manipulate working copies.