Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

svk::command::status(3) [osx man page]

SVK::Command::Status(3) 				User Contributed Perl Documentation				   SVK::Command::Status(3)

NAME
SVK::Command::Status - Display the status of items in the checkout copy SYNOPSIS
status [PATH..] OPTIONS
-q [--quiet] : do not display files not under version control --no-ignore : disregard default and svn:ignore property ignores -N [--non-recursive] : do not descend recursively -v [--verbose] : print full revision information on every item DESCRIPTION
Show pending changes in the checkout copy. The first three columns in the output are each one character wide: First column, says if item was added, deleted, or otherwise changed: ' ' no modifications 'A' Added 'C' Conflicted 'D' Deleted 'I' Ignored 'M' Modified 'R' Replaced '?' item is not under version control '!' item is missing (removed by non-svk command) or incomplete '~' versioned item obstructed by some item of a different kind Second column, modifications of a file's or directory's properties: ' ' no modifications 'C' Conflicted 'M' Modified Third column, scheduled commit will contain addition-with-history ' ' no history scheduled with commit '+' history scheduled with commit Remaining fields are variable width and delimited by spaces: The working revision (with -v) The last committed revision and last committed author (with -v) The working copy path is always the final field, so it can include spaces. Example output: svk status M bar.c A + qax.c svk status --verbose wc M 53 2 sally wc/bar.c 53 51 harry wc/foo.c A + - ? ? wc/qax.c 53 43 harry wc/zig.c 53 20 sally wc perl v5.10.0 2008-08-04 SVK::Command::Status(3)

Check Out this Related Man Page

SVK::Log::Filter::XML(3)				User Contributed Perl Documentation				  SVK::Log::Filter::XML(3)

NAME
SVK::Log::Filter::XML - display log messages in XML format SYNOPSIS
> svk log --xml <?xml version="1.0" encoding="utf-8"?> <log> <logentry revision="1234" original="456"> <author>author</author> <date>2006-05-16T15:43:28.889532Z</date> <msg>This is the commit message for the revision.</msg> </logentry> </log> > svk log --output xml ... DESCRIPTION
The XML filter is an output filter for displaying log messages in XML format. The organization of the XML format should be self- explanatory after a little experimentation. The format is designed to be compatible with Subversion's XML output, so you should be able to use tools like <http://ch.tudelft.nl/~arthur/svn2cl/> without any modification. However, since SVK supports arbitary log filters (see SVK::Log::Filter for details on writing one), it may be easier to write your own output format than to process the XML. This filter is invoked implicitly when you specify the "--xml" argument to SVK's log command. Two arguments to the log command modify XML's behavior. quiet Providing this command-line option to the log command prevents the XML filter from displaying the contents of the log message. All other information is displayed as usual. verbose Providing this command-line option to the log command makes the XML filter display history information for each revision. The history includes the kind of modification (modify, add, delete) and any copy history for each path that was modified in the revision. STASH
/PROPERTY MODIFICATIONS XML leaves all properties and the stash intact. perl v5.10.0 2008-08-04 SVK::Log::Filter::XML(3)
Man Page