Differences From:
File
src/db.c
part of check-in
[54e7410c2a]
- Make sure the initial empty check-in shows up in the timeline and branch
lists of newly created repositories.
by
drh on
2009-01-21 18:12:11.
[view]
To:
File
src/db.c
part of check-in
[42c2a18e73]
- Change the way branches are tagged: The value of the "branch" property is
used to identify the branch name. Repository rebuild required. Also,
branches must be retagged.
by
drh on
2009-01-22 12:03:51.
[view]
@@ -941,10 +941,10 @@
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, "T +newbranch *\n");
+ blob_appendf(&manifest, "T *branch * trunk\n");
+ 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);