1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
|
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
|
+
+
-
-
|
void import_cmd(void){
char *zPassword;
FILE *pIn;
Stmt q;
const char *zBase = find_option("base", 0, 1);
int forceFlag = find_option("force", "f", 0)!=0;
int incrFlag = find_option("incremental", "i", 0)!=0;
int flatFlag = find_option("flat", 0, 0)!=0;
gsvn.zTrunk = find_option("trunk", 0, 1);
gsvn.zBranches = find_option("branches", 0, 1);
gsvn.zTags = find_option("tags", 0, 1);
int flatFlag = find_option("flat", 0, 0)!=0;
verify_all_options();
if( g.argc!=4 && g.argc!=5 ){
usage("FORMAT REPOSITORY-NAME");
}
if( g.argc==5 ){
pIn = fossil_fopen(g.argv[4], "rb");
}else{
|