How do I create tag with certain commits and push it to origin?
How tags work In git, each tag is said to “point to” a (one, single) commit. In fact, the same is true of a branch: a branch name also just points to one commit. What makes this work is two things: each commit also points to another commit (or perhaps several), and for branches (and … Read more