Git坑

上传到远程仓库的文件再次改名(大小写)不生效

https://juejin.im/post/5bbdc1ff6fb9a05d011cfe66

配置 git config core.ignorecase false --global,大小写默认不敏感

在.gitmodules中找不到路径的子模块映射,缺少.gitmodules文件

https://codeday.me/bug/20170816/58438.html
Git - 子模块

首先移除模块依赖,
git rm --cached library/algs4
其次重新添加模块依赖
git submodule add https://github.com/lyloou/algs4 library/algs4