301
302
303
304
305
306
307
308
309
310
311
312
313
314
|
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
|
+
+
+
+
+
+
|
if( g.url.protocol==0 ){
if( urlOptional ) fossil_exit(0);
usage("URL");
}
user_select();
url_enable_proxy("via proxy: ");
*pConfigFlags |= configSync;
if( (*pSyncFlags & SYNC_ALLURL)==0 ){
const char *zAutosync = db_get_for_subsystem("autosync", "sync");
if( sqlite3_strglob("*all*", zAutosync)==0 ){
*pSyncFlags |= SYNC_ALLURL;
}
}
}
/*
** COMMAND: pull
**
** Usage: %fossil pull ?URL? ?options?
|