DEV Community

radin reth
radin reth

Posted on • Updated on

Git Tag

List all tags

git tag
Enter fullscreen mode Exit fullscreen mode

Create new tag

git tag tag_name
Enter fullscreen mode Exit fullscreen mode

Delete tag

git tag -d tag_name
Enter fullscreen mode Exit fullscreen mode

Push specific tag to remote

git push origin branch_name <tag>
Enter fullscreen mode Exit fullscreen mode

Push all local tags to remote

git push origin branch_name --tags
Enter fullscreen mode Exit fullscreen mode

Top comments (0)