TL; DR
Você pode fazer isso excluindo sua tag e recriando-a enquanto falsifica a data e o autor:
> git tag -d <tag-name>
> [GIT_COMMITTER_DATE=<original-commit-date>] \
> [GIT_AUTHOR_NAME=<original-author-name>] \
> git tag <tag-name> [commit]
Toda a história:
Com base na resposta da Sungram (originalmente proposta como uma edição):
1. Resposta Aceita
Esta é uma melhoria em relação às respostas de Andy e Eric Hu . Suas respostas criarão um novo objeto de tag que faz referência ao objeto de tag antigo e ambos terão o mesmo nome.
Para ilustrar isso, considere o seguinte:
> git tag tag1 tag1 -f -a # accepted answer
> git rev-list --objects -g --no-walk --all
[ example output: ]
6bdcc347fca041a5138f89fdf5276b3ebf9095d5
260ab7928d986472895b8c55e54569b3f3cb9517 tag1
a5797673f610914a45ef7ac051e3ee831a6e7c25 tag1
f22d6308c3cd330a3b0d86b9bf05562faf6b6f17
> git show tag1
tag tag1
Tagger: [tagger]
Date: [date of updated tag]
[Updated description]
tag tag1
Tagger: [tagger]
Date: [date of original tag]
[Original description]
[tagged commit details]
2. Melhoria do Sungram
Usar <tag name>^{}
como o segundo argumento de git tag
excluirá todas as tags anteriores com o mesmo nome.
Considere a continuação da sessão anterior do terminal:
> git tag tag1 tag1^{} -f -a # suggested improvement
> git rev-list --objects -g --no-walk --all
[ example output: ]
6bdcc347fca041a5138f89fdf5276b3ebf9095d5
75f02acacfd7d91d55b5bcfdfb1f00aebeed15e3 tag1
f22d6308c3cd330a3b0d86b9bf05562faf6b6f17
> git show tag1
tag tag1
Tagger: [tagger]
Date: [date of updated tag]
[Updated description]
[tagged commit details]
3. Salve a data
Por fim, se você quiser manter a data da tag original como a data da tag atualizada, use alguma mágica awk (ou similar) ou apenas cole a data desejada. A seguir, substitui o segundo exemplo (caso contrário, a data original seria perdida devido à substituição):
> GIT_COMMITTER_DATE="$(git show tag1 | # get info about the tag cascade including the date original of the original tag
> awk '{
> if ($1 == "Date:") {
> print substr($0, index($0,$3))
> }
> }' | # extract all the dates from the info
> tail -2 | head -1)" `# get the second to last date, as the last one is the commit date` \
> git tag tag1 tag1^{} -a -f # finally, update the tag message, but save the date of the old one
>
> git rev-list --objects -g --no-walk --all
6bdcc347fca041a5138f89fdf5276b3ebf9095d5
e18c178f2a548b37799b100ab90ca785af1fede0 tag1
f22d6308c3cd330a3b0d86b9bf05562faf6b6f17
> git show tag1
tag tag1
Tagger: [tagger]
Date: [date of original tag]
[Updated description]
[tagged commit details]
Referências:
4. DIY
Como alternativa, para atualizar as tags, você pode excluí-las e criá-las novamente. Como se vê, a atualização apenas adiciona uma nova tag e faz com que ela aponte para a antiga, ou, como alternativa, exclui implicitamente a antiga e cria uma nova para apontar para o mesmo commit de qualquer maneira.
Você pode conseguir isso emitindo:
> git tag -d <tag-name>
> [GIT_COMMITTER_DATE=<original-commit-date>] \
> [GIT_AUTHOR_NAME=<original-author-name>] \
> git tag <tag-name> [commit]
Aqui [optional]
está um campo opcional; <required>
é um campo obrigatório. Obviamente, você pode adicionar qualquer sinalizador após o git tag
comando que normalmente faria.
git tag -m "A message" --edit v1.0
seria suficiente. Veja minha resposta abaixo