Differences From:
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]
To:
File
src/clone.c
part of check-in
[7a2c37063a]
- merge trunk into creole branch
by
bob on
2009-09-22 07:49:39.
Also file
src/clone.c
part of check-in
[02a584f7f5]
- Add the --private option to the "fossil commit" command. This option creates
a private branch which is never pushed.
by
drh on
2009-08-26 18:25:48.
[view]
@@ -59,8 +59,14 @@
"REPLACE INTO config(name,value)"
" VALUES('last-sync-url', '%q');",
g.urlCanonical
);
+ db_multi_exec(
+ "DELETE FROM blob WHERE rid IN private;"
+ "DELETE FROM delta wHERE rid IN private;"
+ "DELETE FROM private;"
+ );
+ shun_artifacts();
g.zLogin = db_text(0, "SELECT login FROM user WHERE cap LIKE '%%s%%'");
if( g.zLogin==0 ){
db_create_default_users(1);
}