git config --global core.filemode
时间: 2023-07-14 21:08:42 浏览: 275
git config
`git config --global core.filemode` 是用来配置 Git 的全局文件模式的命令。文件模式是指 Git 是否要跟踪文件权限的变化。当你在一个项目中使用 Git 时,有时你可能会遇到类似以下的警告信息:
```
warning: LF will be replaced by CRLF in filename.
The file will have its original line endings in your working directory.
```
这是因为 Windows 和 Unix 系统对待换行符的方式不同。为了解决这个问题,可以使用 `git config --global core.filemode false` 命令来禁用文件模式跟踪。这样 Git 就不会再提示警告信息了。
阅读全文