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,然后rake assets:precompile再次运行。但是现在 gz 文件全部更改了。但是纯文本的 css 和 js 文件不是。
rake assets:precompile
为什么 gz 文件发生了变化?
首先,您不应该将 gzip 文件添加到源代码控制系统中。我会改的,因为每次新建一个gzip文件,即使内容相同,生成的文件也会不一样,源代码管理系统也不知道怎么处理(也不应该这样做) )。
您应该查看这个答案以了解要添加到 gitignore 的文件。
您也可以在 github 中查看有关它的讨论。