source: LMDZ6/branches/Amaury_dev/tools/fcm/lib/FCM/CLI/fcm-branch-list.pod

Last change on this file was 5129, checked in by abarral, 13 months ago

Re-add removed by mistake fcm

File size: 1.5 KB
Line 
1=head1 NAME
2
3fcm branch-list (blist, bls)
4
5=head1 SYNOPSIS
6
7Searches and lists branches in projects. By default, it lists only branches
8created by the current user.
9
10    fcm branch-list [OPTIONS] [TARGET ...]
11
12=head1 ARGUMENTS
13
14If no TARGET is specified, the current working directory is assumed to be the
15target. Each target must either be a URL[@REV] or a PATH[@REV] to a working copy
16of a standard FCM project.
17
18=head1 OPTIONS
19
20=over 4
21
22=item --only=DEPTH:PATTERN, ...
23
24Specify a regular expression to match at various depth. E.g.  with the normal
25FCM branch naming convention, C<--only=1:dev --only=2:fred> will display only
26the development branches owned by user ID "fred". (This option is cumalative,
27and overrides the --show-all and --user=PATTERN options.)
28
29=item --quiet, -q
30
31Decreases verbosity. Only prints branches matching the search criteria.
32
33=item --show-all, -a
34
35Print branches of all users. (This option overrides the --user=USER option.)
36
37=item --url
38
39Displays Subversion URL instead of FCM location keywords.
40
41=item --user=PATTERN, -u PATTERN
42
43Equivalent to --only=2:^PATTERN$ for projects with the normal FCM branch naming
44convention. Lists branches created by the specified list of users instead of the
45current user. With the normal FCM branch naming convention, you can also list
46shared branches by specifying the user as "Share", configuration branches by
47specifying the user as "Config" and release branches by specifying the user as
48"Rel". (This option is cumalative.)
49
50=back
51
52=cut
Note: See TracBrowser for help on using the repository browser.