search

Home  >  Q&A  >  body text

What is recorded under .git/object?

Using the find ./git/objects command will output something like this
.git/objects/cc/628ccd10742baea8241c5924df992b5c019f71
Many lines
The SHA1 here cannot be understood using git cat-file parsing
It is a record in the index because git is executed once There is a
for add, but it is invalid for the git mv command.
Searching the official documents failed, or there is something wrong with the way I search.

漂亮男人漂亮男人2792 days ago733

reply all(1)I'll reply

  • 我想大声告诉你

    我想大声告诉你2017-05-02 09:44:58

    blob文件, 这个blob文件包含文件的压缩内容。 它的名称通过文件内容的Hash值得到。取一段文本的HashValue means running a program that turns its content into a smaller block of text that is a unique identifier of the original content

    https://codewords.recurse.com...

    reply
    0
  • Cancelreply