288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
|
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
|
-
-
+
+
-
-
-
-
|
md5sum_blob(&ctrl, &cksum);
blob_appendf(&ctrl, "Z %b\n", &cksum);
db_begin_transaction();
nrid = content_put(&ctrl, 0, 0);
manifest_crosslink(nrid, &ctrl);
db_end_transaction(0);
/* Autosync and do a push? */
if( do_autosync() ){
/* Do an autosync push if requested */
autosync(0);
g.argc=2;
g.argv[1]="push";
push_cmd();
}
}
/*
** COMMAND: tag
** Usage: %fossil tag SUBCOMMAND ...
**
** Run various subcommands to control tags and properties
|