You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It's possible to get the following error when cloning this repository on Windows:
error: unable to create file
dotnetconfth.github.io/2020/Sessions/Developing_Debugging ASP .NET Core Web API on Kubernetes with Microsoft Bridge to Kubernetes/[.NETCONF] - Developing _ Debugging ASP .NET Core Web API on Kubernetes with Microsoft Bridge to Kubernetes.pdf
Filename too long error: unable to create file
By default, git on windows restricts path lengths to 260 characters (this used to be a restriction in Windows, but I don't think it is anymore). The above file path is 241 characters long, so if you clone the repo somewhere farther from the root of the drive, it's likely to fail.
It can be fixed by running the following git command as Administrator:
git config --system core.longpaths true
However, we should still consider renaming the above file.
The text was updated successfully, but these errors were encountered:
aaronamm
added a commit
to aaronamm/dotnetconfthailand.github.io
that referenced
this issue
Aug 22, 2021
It's possible to get the following error when cloning this repository on Windows:
By default, git on windows restricts path lengths to 260 characters (this used to be a restriction in Windows, but I don't think it is anymore). The above file path is 241 characters long, so if you clone the repo somewhere farther from the root of the drive, it's likely to fail.
It can be fixed by running the following git command as Administrator:
However, we should still consider renaming the above file.
The text was updated successfully, but these errors were encountered: