2

When I commit, the "Changes to be commited" display my files with the accents escaped:

# Changes to be committed:
#       new file:   "encours/probabilit\303\251_tr\303\250s_faible/avocat_gratuit_pour_une_affaire_par_an/README.me"
#       new file:   "encours/supprimer_vote_bloqu\303\251/README.md"

And, it's the same for git status or git diff.

Is there a way to display the accents ?

EDIT: Not the same as this one since this solution is for a MacOS specific problem

EDIT 2: I'm on linux / ubuntu

damio
  • 6,041
  • 3
  • 39
  • 58
  • Looks like this solution is MacOS specific and it's not the same problem – damio Jul 03 '18 at 11:25
  • You haven't named your OS. Still don't, BTW. – phd Jul 03 '18 at 11:26
  • I'm on linux :) – damio Jul 03 '18 at 11:27
  • Solved it with https://stackoverflow.com/questions/4144417/how-to-handle-asian-characters-in-file-names-in-git-on-os-x – damio Jul 03 '18 at 13:24
  • Possible duplicate of [How to handle Asian characters in file names in Git on OS X](https://stackoverflow.com/questions/4144417/how-to-handle-asian-characters-in-file-names-in-git-on-os-x) – damio Jul 03 '18 at 13:25

1 Answers1

2

Solved via How to handle Asian characters in file names in Git on OS X

git config --global core.quotepath false
damio
  • 6,041
  • 3
  • 39
  • 58