美文网首页
Git 错误集锦

Git 错误集锦

作者: iWuYcNil | 来源:发表于2021-09-30 15:59 被阅读0次

    Git 错误集锦

    [TOC]

    File name too long

    git有可以创建4096长度的文件名,然而在windows最多是260,因为git用了旧版本的windows api,为此踩了个坑。

    遇到此问题可以将git的参数core.longpaths全局设置为true,可以执行如下指令

    git config --global core.longpaths true
    

    相关文章

      网友评论

          本文标题:Git 错误集锦

          本文链接:https://www.haomeiwen.com/subject/uepenltx.html