I am trying to clone a GitHub repository containing files with long path names, and I am trying to get around Git's file length restriction using the command
git config --system core.longpaths true
However, I am getting the error messages:
error: could not lock config file C:\Program Files\Git\mingw64/etc/gitconfig: Permission denied
error: could not lock config file C:\Program Files\Git\mingw64/etc/gitconfig: Invalid argument
This seems strange, as the command is trying to change a file in Program Files, not in C:\Users\username where it should be. Furthermore, when I checked C:\Users\username for a .gitconfig file, I was unable to find one. Does anyone know what is going on?
core.longpaths
to do? I see that the following command, run in the Git repository for Git itself, produces no output at all:git grep -i longpath
– Collocation