Answers for "git clone file name too long"

7

Filename too long git

git config --system core.longpaths true
Posted by: Guest on May-06-2020
0

git clone file name too long

// one time solution
git clone -c core.longpaths=true <repo-url>
//persistent solution
- git config --system core.longpaths true
Posted by: Guest on September-27-2021
0

git clone with long file names

git clone -c core.longpaths=true <repo-url>
Posted by: Guest on November-09-2020

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language