1.由于工程路径过长导致克隆代码时会出现文件名过长的问题不能clone代码中断
2.解决
1) 打开git Bash窗口执行
git config --global core.longpaths true
或者:
git config --system core.longpaths true
或者只修改本工程:
git config core.longpaths true
1.由于工程路径过长导致克隆代码时会出现文件名过长的问题不能clone代码中断
2.解决
1) 打开git Bash窗口执行
git config --global core.longpaths true
或者:
git config --system core.longpaths true
或者只修改本工程:
git config core.longpaths true