2
I’m doing merges, and in this action, accented characters are being swapped for symbols, I still don’t know what the source of the problem is, if it’s the encoding of the files, or if the problem is in git, can anyone help me? Below is an example of code that happened after I rewired a merge between two branches.
Ex
log.warn("Tentou pegar anexos de análise inexistente");
log.warn("Tentou pegar anexos de an�lise inexistente");
The problem is exactly this, different encoding , in the git UTF-8 repository in IDE CP1252. When viewing the file after merging modifications the IDE does not recognize the accents. Thank you
– Felipe