svnsvn-export

Understanding the output from svn export


Working on some tweaks for a build script, I noticed that the output from svn export has an 'A' in column 1 for each file exported.

A    C:\build\file1
A    C:\build\file2
A    C:\build\file3

The subversion book describes the meaning of the various columns for svnlook changes and svn status, but I'm not having much luck finding the meaning behind this one.

What does the 'A' in column 1 mean? Are there any other values displayed there? Any other columns?

Thanks!


Solution

  • "A" means add. For import, that's all you'll see. For other operations, there's other possibilities. See http://svnbook.red-bean.com/en/1.5/svn.ref.svn.c.status.html.