106
107
108
109
110
111
112
113
114
115
116
117
118
119
|
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
|
+
+
|
** push Run a "push" on all repositories. Only the --verbose
** option is supported.
**
** rebuild Rebuild on all repositories. The command line options
** supported by the rebuild command itself, if any are
** present, are passed along verbatim. The --force and
** --randomize options are not supported.
**
** repack Look for extra compression in all repositories.
**
** sync Run a "sync" on all repositories. Only the --verbose
** and --unversioned and --share-links 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
|
299
300
301
302
303
304
305
306
307
308
309
310
311
312
|
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
|
+
+
|
|| fossil_strcmp(g.argv[3],"list")==0 ){
zCmd = "remote ls -R";
}else if( fossil_strcmp(g.argv[3],"config-data")==0 ){
zCmd = "remote config-data -R";
}else{
usage("remote ?config-data|list|ls?");
}
}else if( fossil_strcmp(zCmd, "repack")==0 ){
zCmd = "repack";
}else if( fossil_strcmp(zCmd, "setting")==0 ){
zCmd = "setting -R";
collect_argv(&extra, 3);
}else if( fossil_strcmp(zCmd, "unset")==0 ){
zCmd = "unset -R";
collect_argv(&extra, 3);
}else if( fossil_strcmp(zCmd, "fts-config")==0 ){
|