File State Information is general information about how many files
are in a particular state.
This includes information such as how many files are checked out;
how many files are not under BitKeeper control; and how many files
have checked-in deltas, but have not been committed to a
changeset.
To find out the number of files in a repository that are under
revision control, not under revision control, modified (not
checked in), checked in (not committed) use:
 |
bk status
|
To find which files are modified, but not yet checked in:
 |
bk -r sfiles -gc
|
To find which files are pending (checked in, but not yet
committed):
 |
bk pending
|
To find all files the are not under revision control:
 |
bk -r sfiles -gx
|
There are many options to bk sfiles that will give specific file
information in the output.
To see a more detailed list please look at the help page
 |
bk helptool sfiles
|