Notes icon indicating copy to clipboard operation
Notes copied to clipboard

git开启区分大小写后, 删除重复的文件

Open any86 opened this issue 5 years ago • 0 comments

  1. 让git区分大小写: git config core.ignorecase false
  2. 删除缓存: git rm -r --cached .
  3. 添加当前目录的所有文件: git add .
  4. 写注释: git commit -m 'fix: 修复git大小写不敏感造成的文件未上传'
  5. 提交: git push

any86 avatar Jun 06 '19 01:06 any86