Differences From:
File
src/info.c
part of check-in
[ac03d43348]
- Add the ability to edit check-in dates using control artifacts. Useful
if a user does a check-in when their system clock is set incorrectly thus
causing an incorrect timestamp to appear on the check-in artifact.
You must run "fossil all rebuild" after upgrading to this
or any later version of fossil from a prior version.
by
drh on
2009-08-21 16:25:30.
[view]
To:
File
src/info.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]
@@ -1395,8 +1395,9 @@
blob_appendf(&ctrl, "U %F\n", g.zLogin);
md5sum_blob(&ctrl, &cksum);
blob_appendf(&ctrl, "Z %b\n", &cksum);
db_begin_transaction();
+ g.markPrivate = content_is_private(rid);
nrid = content_put(&ctrl, 0, 0);
manifest_crosslink(nrid, &ctrl);
db_end_transaction(0);
}