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