Convert git repository file encoding
You can do this with git filter-branch. The idea is that you have to change the encoding of the files in every commit, rewriting each commit as you go. First, write a script that changes the encoding of every file in the repository. It could look like this: #!/bin/sh find . -type f -print | … Read more