412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
|
** it with "tag:". For instance:
**
** fossil update decaf
**
** will be taken as a UUID and fossil will probably complain
** that no such revision was found. However
**
** fossil update tag:cfcfcfee
**
** will assume that "decaf" is a tag/branch name.
**
*/
void tag_cmd(void){
int n;
int raw = find_option("raw","",0)!=0;
|
|
|
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
|
** it with "tag:". For instance:
**
** fossil update decaf
**
** will be taken as a UUID and fossil will probably complain
** that no such revision was found. However
**
** fossil update tag:decaf
**
** will assume that "decaf" is a tag/branch name.
**
*/
void tag_cmd(void){
int n;
int raw = find_option("raw","",0)!=0;
|