What are the ways to Tag commits on GitHub - the only ways I've seen is to create a Release, which targets a branch and tags all the commits on that branch. Or via the terminal which you can tag commits individually - git tag -a v1.2 9fceb02
Is there an easier way to bulk tag a lot of commits on a particular branch (e.g. master) but not all of the commits?