22 lines
333 B
Markdown
22 lines
333 B
Markdown
### git log 亂碼
|
|
|
|

|
|
|
|
#### 解決方法
|
|
設定環境變數 LC_ALL=C.UTF-8
|
|
|
|
Command Prompt
|
|
```cmd
|
|
set LC_ALL=C.UTF-8
|
|
```
|
|
|
|
Powershell
|
|
```powershell
|
|
$env:LC_ALL="C.UTF-8"
|
|
```
|
|
|
|

|
|
|
|
#### 永久有效設定
|
|

|