Where to get all possible tags/values for "svn status --xml"?
svn status --xml
prints all files status and it's more much useful than par开发者_如何学JAVAsing svn status
output.
Is there a list of all possible tags/sections in XML file and their values? I can read SVN sources but its time consuming and a dirty method.
Is it possible to find clean map from
svn status --xml
values tosvn status
status characters also?
I've found Schema file for status command so its a fast answer.
File placed in SVN source tree there:
subversion/svn/schema/status.rnc
It is available here:
http://svn.apache.org/viewvc/subversion/trunk/subversion/svn/schema/status.rnc?view=markup
The list for the current trunk of SVN is:
- added
- conflicted
- deleted
- external
- ignored
- incomplete
- merged
- missing
- modified
- none
- normal
- obstructed
- replaced
- unversioned
精彩评论