> git status
.................: File name too long
And now the pain begins. If you know, you know... 😑
> git status
.................: File name too long
And now the pain begins. If you know, you know... 😑
@mahlzahn @nobodyinperson filesystems already have some surprisingly restrictive limits (ext4 can only do 255 bytes long filenames), and apparently there is a sort-of hard limit on linux at 4096 bytes for paths. You can't `touch` an absolute path longer than 4096 bytes, but if you first cd into a part of that path and touch the same file with a relative path you can.
I guess git is applying those limits too?