Skip to main content

Find and tag Git commits based on version numbers in commit messages.

Project description

git-tagup


Find and tag Git commits based on version numbers in commit messages.

If you're like me, you often add the version number for a commit into the commit message itself, something like:

$ git commit -m "Bump version to 2.1.5"

If you're still like me you probably forget to create a tag for the new version and push it to the remote repository. I end up having projects that have many un-tagged commits from months or years ago that never get real tags.

I created git-tagup to conveniently search through the active branch in a Git repository and find un-tagged commits containing version numbers in the commit message. For each one it finds, the tool asks the user whether they want to create a tag for it.

Currently only SemVer versioning format is supported, but I'm happy to take requests for other formats.

Happy tagging!

Requirements


  • Python 3.6 or greater
  • Pip (Package manager for Python)

Quickstart


  1. Install git-tagup:
$ pip install git-tagup
  1. Browse to the Git repository you want to add tags to - this is usually your project root directory containing the .git directory:
$ cd path/to/project/root
  1. Run the program:
$ git-tagup
  1. If version numbers are found in the commit messages, answer the prompts with a y to create the tag or n to skip it.

  2. Don't forget to push the new tags to your remote when done!

$ git push --followtags

Example


$ cd path/to/project/root
$ git-tagup
Create the tag 'v0.1.1' for commit message 'Bump version to 0.1.1'? (y/n/q): n
Create the tag 'v0.1.2' for commit message 'Bump version to 0.1.2'? (y/n/q): y
Create the tag 'v0.1.3' for commit message 'Bump version to 0.1.3'? (y/n/q): q

Installation


$ pip install git-tagup

Learn More


Learn more about this project on the git-tagup project page.

Authors


Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

git-tagup-0.1.2.tar.gz (3.4 kB view hashes)

Uploaded Source

Built Distribution

git_tagup-0.1.2-py3-none-any.whl (4.1 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page