Skip to content

trustos/pocket-admin

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

100 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Quick Guide to Tagging and Versioning for a New Release on GitHub

1. Decide on a Version Number

Use Semantic Versioning (SemVer) with the format MAJOR.MINOR.PATCH:

  • MAJOR: Incompatible API changes
  • MINOR: Backward-compatible functionality
  • PATCH: Backward-compatible bug fixes

Example: v1.2.3

1. Create a Git Tag

1. Annotated Tag (Recommended)

  1. Create an Annotated Tag:

    git tag -a v1.2.3 -m "Release version 1.2.3"

2. Lightweight Tag (Not Recommended for Releases)

git tag v1.2.3

3. Push the Tag to Remote Repository

Push a Specific Tag

git push origin v1.2.3

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Packages

No packages published