Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

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

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

NAME
SVK::Command::Info - Display information about a file or directory SYNOPSIS
info [PATH | DEPOTPATH]... OPTIONS
-R [--recursive] : descend recursively DESCRIPTION
For example, here's the way to display the info of a checkout path: % svk info ~/dev/svk Checkout Path: /Users/gugod/dev/svk Depot Path: //svk/local Revision: 447 Last Changed Rev.: 447 Last Changed Date: 2006-11-28 Copied From: /svk/trunk, Rev. 434 Merged From: /svk/trunk, Rev. 445 You can see the result has some basic information: the actual depot path, and current revision. Next are advanced information about copy and merge source for this depot path. The result of "svk info //svk/local" is almost the same as above, except for the "Checkout Path:" line is not there, because you are not referring to a checkout path. Note that the revision numbers on "Copied From:" and "Merged From:" lines are for the source path (//svk/trunk), not the target path (//svk/local). The example above state that, //svk/local is copied from the revision 434 of //svk/trunk, and //svk/local was merged from the revision 445 of //svk/trunk. Hence if you do a "svk log -r 434 //svk/local", svk would tell you that //svk/local does not exist at revision 434. So far there is no easy way to tell the actual revision number of //svk/local right after a copy or merge. If the target is a depot path, or the corresponding depot path of the target checkout path is actually a mirroring path, the output of this command will look like this: % svk info //svk/trunk Depot Path: //svk/trunk Revision: 447 Last Changed Rev.: 445 Mirrored From: svn://svn.clkao.org/svk, Rev. 1744 So you can see this depot path is mirrored from a remote repository, and so far mirrored up to revision 1744. perl v5.10.0 2008-08-04 SVK::Command::Info(3)

Check Out this Related 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)
Man Page