source: LMDZ6/branches/Amaury_dev/tools/fcm/lib/FCM/CLI/fcm-export-items.pod @ 5129

Last change on this file since 5129 was 5129, checked in by abarral, 8 weeks ago

Re-add removed by mistake fcm

File size: 1.6 KB
Line 
1=head1 NAME
2
3fcm export-items
4
5=head1 SYNOPSIS
6
7Exports directories in SOURCE as a list of versioned items.
8
9This command is used to support a legacy working practice, in which directories
10in a source tree are regarded as individual versioned items.
11
12    fcm export-items [OPTIONS] SOURCE
13
14=head1 ARGUMENTS
15
16The SOURCE should be the URL of a branch in a Subversion repository with the
17standard FCM layout.
18
19=head1 OPTIONS
20
21=over 4
22
23=item --config-file=PATH, --file=PATH, -f PATH
24
25Specify the path to the configuration file.
26(default=$PWD/fcm-export-items.cfg)
27
28=item --directory=PATH, -C PATH
29
30Specify the path to the destination. (default=$PWD)
31
32=item --new, -N
33
34Specify the new mode. In this mode, everything is re-exported. Otherwise, the
35system runs in incremental mode, in which the version directories are only
36updated if they do not already exist.
37
38=back
39
40=head1 CONFIGURATION
41
42The configuration file should be in the deprecated FCM 1 configuration format.
43The label in each entry should be a path relative to the source URL. If the path
44ends in * then the path is expanded recursively and any sub-directories
45containing regular files are added to the list of relative paths to export. The
46value may be empty, or it may be a list of space separated "conditions". Each
47condition is a conditional operator (>, >=, <, <=, == or !=) followed by a
48revision number. The command uses the revision log to determine the revisions at
49which the relative path has been updated in the source URL. If these revisions
50also satisfy the "conditions" set by the user, they will be considered in the
51export.
52
53=head1 COPYRIGHT
54
55Copyright (C) 2006-2021 British Crown (Met Office) & Contributors.
56
57=cut
Note: See TracBrowser for help on using the repository browser.