jj tag
all
Manage tags in a `jj` repository. Some subcommands such as `delete`, `list`, `set` have their own usage documentation.
More info →Subcommands (3)
Options (5)
booleanCreate a tag pointing to the current working copy revision
Example:
jj tag {{[s|set]}} {{tag_name}}-r, --revisionbooleanCreate a tag pointing to a specific revision
Example:
jj tag {{[s|set]}} {{tag_name}} {{[-r|--revision]}} {{revision}}booleanList all tags
Example:
jj tag {{[l|list]}}booleanDelete a tag
Example:
jj tag {{[d|delete]}} {{tag_name}}-h, --helpbooleanDisplay help
Example:
jj tag {{[-h|--help]}}Examples (8)
Create a tag pointing to the current working copy revision
jj tag [s|set] tag_nameCreate a tag pointing to a specific revision
jj tag [s|set] tag_name [-r|--revision] revisionList all tags
jj tag [l|list]List tags matching a pattern, sorted by committer date (newest first)
jj tag [l|list] --sort committer-date- "pattern"Move an existing tag to a different revision
jj tag [s|set] tag_name [-r|--revision] revision --allow-moveDelete a tag
jj tag [d|delete] tag_nameDelete tags matching a glob pattern
jj tag [d|delete] "glob:v1.*"Display help
jj tag [-h|--help]made by @shridhargupta | data from tldr-pages