I'm trying to clone a Git repository on a Windows machine that has an NTFS volume.
Unfortunately I get several errors:
error: unable to create file (...) Filename too long
The files in question are indeed very long but, according to what I know about NTFS, it should still work.
For example:
- file name is: 151 characters
- absolute filepath (including file name): 262 characters
This should still be accceptable and git clone
should work. From what I found online and in NTFS documentation, restrictions are:
- max filename length: 255 characters
- max absolute path: ~32,000 characters
How come I can not clone that repository on a NTFS volume?