108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
|
** supported by the rebuild command itself, if any are
** present, are passed along verbatim. The --force and
** --randomize options are not supported.
**
** sync Run a "sync" on all repositories. Only the --verbose
** and --unversioned options are supported.
**
** set|unset Run the "setting", "set", or "unset" commands on all
** repositories. These command are particularly useful in
** conjunction with the "max-loadavg" setting which cannot
** otherwise be set globally.
**
** server Run the "ui" or "server" commands on all repositories.
** ui The root URI gives a listing of all repos.
**
**
** In addition, the following maintenance operations are supported:
**
** add Add all the repositories named to the set of repositories
** tracked by Fossil. Normally Fossil is able to keep up with
** this list by itself, but sometimes it can benefit from this
|
|
>
>
|
|
>
>
>
>
>
|
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
|
** supported by the rebuild command itself, if any are
** present, are passed along verbatim. The --force and
** --randomize options are not supported.
**
** sync Run a "sync" on all repositories. Only the --verbose
** and --unversioned options are supported.
**
** set Run the "setting" or "set" commands on all
** repositories. These command are particularly useful in
** conjunction with the "max-loadavg" setting which cannot
** otherwise be set globally.
**
** unset Run the "unset" command on all repositories
**
** server Run the "server" commands on all repositories.
** The root URI gives a listing of all repos.
**
** ui Run the "ui" command on all repositories. Like "server"
** but bind to the loopback TCP address only, enable
** the --localauth option and automatically launch a
** web-browser
**
**
** In addition, the following maintenance operations are supported:
**
** add Add all the repositories named to the set of repositories
** tracked by Fossil. Normally Fossil is able to keep up with
** this list by itself, but sometimes it can benefit from this
|