美文网首页
git提交node-modules报文件名过长无法提交问题(转)

git提交node-modules报文件名过长无法提交问题(转)

作者: 会灰的大飞狼 | 来源:发表于2018-06-05 16:42 被阅读0次

https://www.cnblogs.com/junwu/p/6004663.html

http://245993596.iteye.com/blog/2317715

  • Update to msysgit 1.9 (or later)
  • Launch Git Bash
  • Got to your Git repository which 'suffers' of long paths issue
  • Enable long paths support with git config core.longpaths true

当报如下错误时候

fatal: unable to stat 'node_modules/gulp-connect/node_modules/gulp-util/node_modules/dateformat/node_modules/meow/node_modules/normalize-package-data/node_modules/validate-npm-package-license/node_modules/spdx-expression-parse/parser.generated.js': Filename too long

可以使用以下命令来修复:

git config --system core.longpaths true

也可以仅设置当前项目:

git config core.longpaths true

查看设置状态:

git config core.longpaths

相关文章

  • git提交node-modules报文件名过长无法提交问题(转)

    https://www.cnblogs.com/junwu/p/6004663.html http://24599...

  • git 提交代码文件名过长(提交失败)的问题

    解决办法: 用windows的童鞋都见过文件名太长无法删除,文件名太长无法修改,文件名太长无法移动等问题,使用gi...

  • git使用笔记

    git log -p 文件名 查看提交指定文件提交记录以及改动 每次提交之前建议用 git diff HEAD 查...

  • git基础命令

    创建git库:git init 添加文件 : git add 文件名 提交:git commit 文件名 -m ‘...

  • git使用相关命令

    1、提交 git commit -m "注释" 文件名 2、查看提交日志 3、回退到某个版本 git reset ...

  • Git 几个特殊操作

    更新(修改)最后一次提交,但不产生新的提交 git commit --amend 删除文件 git rm 文件名删...

  • 2.4 Git 基础 - 撤销操作

    git commit --amend -->替代最近提交的结果 git reset HEAD 文件名 ...

  • Git常用命令

    克隆:git clone 添加:git add 文件名 查看文件状态:git status 提交:git comm...

  • git命令

    标签(空格分隔): git git status git add 文件名 git commit -m 提交描述 g...

  • 2018-05-17

    git 常用命令 克隆:git clone 添加:git add 文件名 查看文件状态:git status 提交...

网友评论

      本文标题:git提交node-modules报文件名过长无法提交问题(转)

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