Differences From:
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]
To:
File
src/db.c
part of check-in
[7c7edde116]
- Add the sym-trunk and newbranch tags to the root check-in when rebuilding.
Also add the newbranch tag to the root check-in when creating a new
repository.
by
drh on
2009-01-21 02:47:42.
[view]
@@ -941,8 +941,9 @@
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, "U %F\n", g.zLogin);
md5sum_blob(&manifest, &hash);
blob_appendf(&manifest, "Z %b\n", &hash);
blob_reset(&hash);