I've created an annotated tag in gitk with the folowing message:
Plots são mostrados na mesma janela.
But now gitk shows:
Plots são mostrados na mesma janela
How to correct the encoding?
Have you set up the git encoding correctly?
git config --global gui.encoding utf-8
Looks like you did not set it correctly. If this is the case you can still update the messages and alter them.
Annotated tag is a "real" commit so using git filter-branch
with the desired flag can update your commit message to the right encoding.
Another option is directly yo update the tag message with the new message once you set up the right encoding
git tag <tag name> <tag name> -f -m "<new message>"
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With