0

I am working on windows 11 and using GIT. I have failed to checkout a branch due to some of the files turned to be in a too-long path.

I followed the two suggestions how to allow long paths in windows (as described here. and also same solution in SO question here) I did restart and still nothing helps. I still can't checkout due to this problem.

Any ideas ?

aviad cohen
  • 637
  • 1
  • 6
  • 16

1 Answers1

0

That was quick: eventually what solved the problem for me was adding this configuration in git:

git config --system core.longpaths true

(Following the solution discussed here)

aviad cohen
  • 637
  • 1
  • 6
  • 16