You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Dec 5, 2024. It is now read-only.
The reason is that Process::OutputDataReceived character-encodes with Encoding.Default, so the encoding output from the command does not match the encoding.
Since Process::StandardOutput::ReadLine uses Process::StartInfo::StandardOutputEncoding, combining git -c i18n.logoutputencoding=utf8 log and Encoding.UTF8 will not garbled. However, since this is a synchronization process, Unity freezes until the command is finished.