Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何让 git 完全忽略任何空格?即使存在任何空格,我也不在乎。我只想让 git 不跟踪任何空格。
即当我提交、创建或应用补丁、合并或任何事情时,我希望 git 永远不会因为空格而困扰我。
另外我不希望 git 自动删除任何空格!
我知道,没有办法让 git 忽略空格更改,但您可以禁用警告。
这应该(全局)禁用默认启用的警告:
git config --global core.whitespace -trailing-space,-space-before-tab
您所做的更改仍将是您提交的一部分。