Differences From:
File
src/clone.c
part of check-in
[47d8fc4944]
- Always store g.urlCanonical as the last-sync-url value.
Fix for ticket 045f23be750d93c0bd91f179f39c5c829ed01bc6.
by
drh on
2009-08-01 12:59:38.
[view]
To:
File
src/clone.c
part of check-in
[00ac7945a9]
- Disconnect the global configuration database in ~/.fossil from the
respository database in most cases. This allows multiple "sync" or
"commit" operations to be running on different repositories at the same time.
by
drh on
2009-08-13 14:27:24.
[view]
@@ -42,9 +42,9 @@
url_proxy_options();
if( g.argc!=4 ){
usage("FILE-OR-URL NEW-REPOSITORY");
}
- db_open_config();
+ db_open_config(0);
if( file_size(g.argv[3])>0 ){
fossil_panic("file already exists: %s", g.argv[3]);
}
url_parse(g.argv[2]);
@@ -51,9 +51,8 @@
if( g.urlIsFile ){
file_copy(g.urlName, g.argv[3]);
db_close();
db_open_repository(g.argv[3]);
- db_open_config();
db_record_repository_filename(g.argv[3]);
db_multi_exec(
"REPLACE INTO config(name,value)"
" VALUES('server-code', lower(hex(randomblob(20))));"