-- Leo's gemini proxy

-- Connecting to freeshell.de:1965...

-- Connected

-- Sending request

-- Meta line: 20 text/gemini;lang=en-GB

git tag


> Create, list, delete or verify tags.

> A tag is a static reference to a specific commit.

More information.


List all tags:

git tag

Create a tag with the given name pointing to the current commit:

git tag {tag_name}

Create a tag with the given name pointing to a given commit:

git tag {tag_name} {commit}

Create an annotated tag with the given message:

git tag {tag_name} -m {tag_message}

Delete the tag with the given name:

git tag -d {tag_name}

Get updated tags from upstream:

git fetch --tags

List all tags whose ancestors include a given commit:

git tag --contains {commit}


> Copyright © 2014—present the tldr-pages team and contributors.

> This work is licensed under the Creative Commons Attribution 4.0 International License (CC-BY).

CC-BY



-- Response ended

-- Page fetched on Tue May 21 02:45:17 2024