Differences From Artifact [01f0fa0224]:
- File src/tag.c — part of check-in [b6e66cdd08] at 2011-01-28 21:52:30 on branch experimental — Remove extraneous hyperlinks from the Tags and Branches timelines since the "tag:" hyperlinks now cover that functionality. (user: drh size: 16277) [more...]
To Artifact [d6e2c2c4f7]:
- File src/tag.c — part of check-in [d22519e500] at 2011-02-17 20:44:11 on branch trunk — Make sure manifest_crosslink() resets its input blob and that callers know this and do not attempt to reuse that blob. (user: drh size: 16311)
| ︙ | |||
309 310 311 312 313 314 315 316 317 318 319 320 321 322 | 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 | + |
blob_appendf(&ctrl, "\n");
}
blob_appendf(&ctrl, "U %F\n", zUserOvrd ? zUserOvrd : g.zLogin);
md5sum_blob(&ctrl, &cksum);
blob_appendf(&ctrl, "Z %b\n", &cksum);
nrid = content_put(&ctrl, 0, 0, 0);
manifest_crosslink(nrid, &ctrl);
assert( blob_is_reset(&ctrl) );
}
/*
** COMMAND: tag
** Usage: %fossil tag SUBCOMMAND ...
**
** Run various subcommands to control tags and properties
|
| ︙ |