Differences From:
File
src/db.c
part of check-in
[2be82dcc2a]
- The server now issues error messages in the synchronization
protocol when a database error occurs during sync.
Ticket 39f3294e213111a51e93d02fef6faa0062979619
by
drh on
2008-12-07 18:48:09.
[view]
To:
File
src/db.c
part of check-in
[0139767b9a]
- When creating new repositories ("fossil new") label the initial empty
check-in with a propagating symbolic tag "trunk".
by
drh on
2009-01-21 02:22:28.
[view]
@@ -933,15 +933,16 @@
user_select();
if (makeInitialVersion){
blob_zero(&manifest);
- blob_appendf(&manifest, "C initial\\sempty\\sbaseline\n");
+ blob_appendf(&manifest, "C initial\\sempty\\scheck-in\n");
zDate = db_text(0, "SELECT datetime('now')");
zDate[10]='T';
blob_appendf(&manifest, "D %s\n", zDate);
blob_appendf(&manifest, "P\n");
md5sum_init();
blob_appendf(&manifest, "R %s\n", md5sum_finish(0));
+ blob_appendf(&manifest, "T *sym-trunk *\n");
blob_appendf(&manifest, "U %F\n", g.zLogin);
md5sum_blob(&manifest, &hash);
blob_appendf(&manifest, "Z %b\n", &hash);
blob_reset(&hash);