Total Pageviews

2021/12/12

[Git] 無法正常顯示中文檔名

Problem

在 Mac 環境下,執行以下指令時,無法正常顯示繁體中文檔名

Untracked files:

  (use "git add <file>..." to include in what will be committed)



	"Power BI\345\205\245\351\226\200 \345\244\247\346\225\270\346\223\232\350\246\226\350\246\272\345\214\226 + \346\231\272\346\205\247\346\261\272\347\255\226 + \351\233\262\347\253\257\345\210\206\344\272\253/my practice/ch6/"


How-To

執行以下指令進行設定

git config --global core.quotePath false


即可正常顯示繁體中文檔名

Untracked files:

  (use "git add <file>..." to include in what will be committed)



	Power BI入門 大數據視覺化 + 智慧決策 + 雲端分享/my practice/ch6/


Reference

[1] https://stackoverflow.com/a/34549249

No comments: