Reputation: 783
I want to create a single tag for multiple commits(merged branches).
Can we group multiple commits to a single tag , please help me on this.
Upvotes: 27
Views: 19471
Reputation: 1330
A really late answer, but you could make tags like
v1.2_b7_p0
v1.2_b7_p1
v1.2_b7_p2
v1.2_b7_p3
where the last _pX
part makes them unique, but you can group by the other part. Possibly:
v1.2_b7_code
v1.2_b7_docs
v1.2_b7_demo
v1.2_b7_changelog
would work, depending on why you need so many.
But it does seem a release should be a single commit. Maybe a branch is really what you want.
Upvotes: 4
Reputation: 19035
What you are trying to do is not possible. A tag, like a branch, can only point to at most one commit.
Upvotes: 17