what is “stat information” in a git index?

♀尐吖头ヾ 提交于 2019-12-10 21:52:04

问题


In git documentation (like git-checkout-index http://linux.die.net/man/1/git-checkout-index ), there are references to "stat information" in the index file. What is this mysterious "stat information"?


回答1:


That's information that would be returned by stat() - in particular, file permissions, since that's what's actually tracked. (Other information includes timestamps, filesize, user/group owners, and the inode.)

There's also a command-line program stat which is essentially a wrapper for that system call; try stat <file> and you'll see all that kind of information.



来源:https://stackoverflow.com/questions/5234463/what-is-stat-information-in-a-git-index

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!