In git, is it possible to create a pointer to a tag that can be used like a tag itself, but be moved to point to another tag at a later date?
Usage: for each release that gets deployed to production, we create a tag like: release-some-identifier
, and want a pointer simply called release
that refers to the last release (will always refer to the last release),
and then on the next release, move it to point to the latest tag that was created with a new identifier.