I have some history rewriting to do for which I'd like to keep my original tree intact for now. The rewritten tree should however copy the tags previously used as well. Is there any less manual option than e.g. prepending tag names with the branch name?
|
feedback
|
|
No, there is nothing like a per-branch tag in git. All branches and tags are just kinds of refs in Git; a ref is just a name that points to a particular revision in the revision history. For instance, if you have
refs/heads/devel -> *
/ \
* * <- refs/heads/master
| |
* *
\ /
* <- refs/tags/v2.0
|
*
|
* <- refs/tags/v1.0
|
*
As you can see, there's nothing tying those tags to any branches; in fact, all of those tags are contained in both the So if you want to rewrite history, and preserve the old tags, you will have to rewrite your tag names. As sehe points out, this is done using | |||||||
feedback
|