> ## Documentation Index
> Fetch the complete documentation index at: https://adro.codes/llms.txt
> Use this file to discover all available pages before exploring further.

# Add a tag to a branch

> Want to know how to add a tag to a branch for new releases? This article will show you how.

## Add the tag with a message

```bash theme={null}
git tag -a v1.4 -m 'message'
```

## Push the tag

```bash theme={null}
git push origin --tags
# OR
git push origin v1.4
```
