git - Cyrillic text appears garbled in the VisualStudio.com web interface -
i using visualstudio.com git store source code, , screws ukrainian text , instead of:
withsuccess("Збережено");
i getting smt that:
withsuccess("Çáåðåæåíî");
i not sure problem on local pc looks , after pushing commits can see on web it's changed.
is there configuration helps solve problem?
... can see on web it's changed.
the problem there's no meta-information attached files stored in git repository hint a renderer (in case—that web site engine renders content of file) in encoding file encoded. git of time treats stores opaque binaries, , encodings come consideration in of ui parts (git log
, gitk
, git gui
).
so see part misbehaves, clone pushed repository afresh other place (on local pc) , check contents of files containing cyrillic text. if see ok, live or file feature request against online service support user-specific encoding hints—like gui.encoding
configuration variable used git tools—so specify encoding files in repository supposed in.
Comments
Post a Comment