May 2017
Beginner
552 pages
28h 47m
English
A tag can be used as an identifier to create a fork or branch:
$ fossil add tag newTag trunk
$ fossil branch new newTagBranch newTag
$ fossil checkout newTagBranch
A tag can create a branch with a commit and the -branch option:
$ fossil add tag myNewTag 2016-12-21
$ fossil checkout myNewTag
# edit and change
$ fossil commit -branch myNewTag