Files
vue-ts-example/README.gitattributes.MD
严浩 5a16b62008
All checks were successful
/ build-and-deploy-to-vercel (push) Successful in 2m54s
/ surge (push) Successful in 3m4s
/ playwright (push) Successful in 1m27s
/ lint-build-and-check (push) Successful in 5m26s
chore(docs): add .gitattributes section to README and remove redundant content
2025-04-24 10:29:35 +08:00

1.1 KiB
Raw Blame History

.gitattributes

如果你先推送了一个.jpg文件然后再推送包含.gitattributes文件的更新Git不会自动重新处理之前的.jpg文件的属性。为使.gitattributes中的新规则生效你可以通过以下步骤重新应用设置

1.	删除本地缓存的.jpg文件git rm --cached <file>.jpg
2.	重新添加该文件git add <file>.jpg
3.	再次提交并推送git commit -m "Apply .gitattributes changes" && git push

这样Git将按照.gitattributes中的新规则处理该文件。

要验证.gitattributes文件中的二进制配置是否生效可以使用以下方法

1.	推送后验证:先按照之前步骤重新添加并推送.jpg文件。
2.	查看差异diff执行 git diff检查文件是否有文本形式的改动。如果是二进制文件Git不会显示具体内容的差异。
3.	Git日志验证执行 git log -p <file>.jpg 查看提交的改动记录,确认文件未受行尾或编码处理的影响。

如果以上测试显示该文件未发生不必要的改动,说明.gitattributes配置已生效。