Alias para mover una etiqueta a una confirmación diferente.
En su muestra, a medida comprometerse con e2ea1639 de hash hacer: git tagm v0.1 e2ea1639
.
Para etiquetas empujadas, use git tagmp v0.1 e2ea1639
.
Ambos alias te mantienen la fecha y el mensaje originales. Si lo usa git tag -d
, perdió su mensaje original.
Guárdalos en tu .gitconfig
archivo
# Return date of tag. (To use in another alias)
tag-date = "!git show $1 | awk '{ if ($1 == \"Date:\") { print substr($0, index($0,$3)) }}' | tail -2 | head -1 #"
# Show tag message
tag-message = "!git show $1 | awk -v capture=0 '{ if(capture) message=message\"\\n\"$0}; BEGIN {message=\"\"}; { if ($1 == \"Date:\" && length(message)==0 ) {capture=1}; if ($1 == \"commit\" ) {capture=0} }; END { print message }' | sed '$ d' | cat -s #"
### Move tag. Use: git tagm <tagname> <newcommit>
tagm = "!GIT_TAG_MESSAGE=$(git tag-message $1) && GIT_COMMITTER_DATE=$(git tag-date $1) && git tag-message $1 && git tag -d $1 && git tag -a $1 $2 -m \"$GIT_TAG_MESSAGE\" #"
### Move pushed tag. Use: git tagmp <tagname> <newcommit>
tagmp = "!git tagm $1 $2 && git push --delete origin $1 && git push origin $1 #"
git push origin :refs/tag/<tagname>
y luego hacergit tag -fa <tagname>
y luegogit push origin master --tags
. De lo contrario, podría terminar con cosas extrañas en la lista de referencias en el control remoto con caracteres ^ y {} añadidos. Gracias a Dan en codebasehq.com por señalar esto.