Differences From:
File
src/checkin.c
part of check-in
[4ac75b9107]
- Prevent check-ins against a closed leaf. Add the --branch and --bgcolor
options to the "ci" and "commit" commands.
by
drh on
2009-01-24 15:47:58.
[view]
To:
File
src/checkin.c
part of check-in
[c5f4ec0ed5]
- Undo inadvertant hacking changes in previous ci (should have been documentation only)
by
bharder on
2009-02-21 18:59:46.
Also file
src/checkin.c
part of check-in
[8be6204607]
- 'fossil' encode tagnames for manifest (for ticket 15f49be6b2b1e) (allows for tags with spaces in name)
by
bharder on
2009-02-09 04:41:08.
[view]
@@ -617,9 +617,9 @@
" ORDER BY tagname",
vid, zBranch);
while( db_step(&q)==SQLITE_ROW ){
const char *zTag = db_column_text(&q, 0);
- blob_appendf(&manifest, "T -%s *\n", zTag);
+ blob_appendf(&manifest, "T -%F *\n", zTag);
}
db_finalize(&q);
}
blob_appendf(&manifest, "U %F\n", g.zLogin);