Is it possible to make a precommit hook for git or svn that can reject files not committed in a specific encoding?
I have worked on several project where it seems to be a problem to stick to a certain file encoding (like UTF-8 for instance)
|
Is it possible to make a precommit hook for git or svn that can reject files not committed in a specific encoding? I have worked on several project where it seems to be a problem to stick to a certain file encoding (like UTF-8 for instance)
| |||
|
feedback
|
|
Your iconv may be able to tell you if something is not UTF-8, but other encodings may not be so easy (especially 8-bit, single byte encodings like ISO-8859-1). For Git, you may actually want an update hook instead of a pre-commit hook (so that it can be run in a central repository to enforce the rule). Git pre-commit hook:
Put one or more Git pathspecs after the To check the tip of the updated ref in an update hook, use | |||
|
feedback
|
|
Precommit hooks are just scripts. So if you can tell the encoding in a script, then you can use that information to reject the wrong sort of file. You could search the file for characters outside of the normal character range. If there's a magic number or a tag to tell you the encoding for a file, you can check that. Otherwise ask yourself "how would I know this file is in the wrong encoding?" Can you code that up? | |||
|
feedback
|
|
You could maybe use iconv utility to change the encoding from UTF-8 to for example UTF-16. And if the change fails, the source file is not in correct encoding:
| |||
|
feedback
|