git 跟踪资源分叉吗?
每次替换受版本控制的 Photoshop .psd
文件时,我都会问自己这个问题。
您可以使用ls -l
看到PS已在资源分支中创建了缩略图图标。
I ask myself this every time I replace a Photoshop .psd
file that I have under version control.
You can see with ls -l
that PS has created a thumbnail icon in the resource fork.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Git 不会跟踪元数据,因为这些资源不是文件内容的一部分(因此您的答案是“否”)。
在他的“跨平台版本控制”条目中,Jakub Narębski 评论道:
Thomas Tempelmann 评论:
Git will not track metadata, as those resources are not part of the content of the file (so your answer is "no").
In his "Cross-Platform Version Control" entry, Jakub Narębski comments:
Thomas Tempelmann notes in the comments:
简短的回答是否。
在 Mac 上,默认情况下,git 不跟踪资源分支、xattrs 或 finder 信息。
git
将立即“切片”您的资源分支,这正是我想要的。其他工具,例如
cp
和rsync
已在 Mac 上进行了修补以保留这些元数据有时很方便,有时很烦人。
git
还不烦人。 或者方便,取决于你的观点。Short answer is no.
On the mac, by default, git does not track resource forks, or xattrs or finder info.
git
will "slice" your resource forks right off, which is exactly what I wanted.Other tools, like
cp
andrsync
have been patched on the mac to preservethis metadata, which at times is convenient and at other times annoying.
git
is not yet annoying. Or convenient, depending on your POV.