What exactly is a “grafted” commit in a shallow clone?

我与影子孤独终老i 提交于 2019-12-03 08:16:23

问题


When doing a shallow clone in git (using the --depth option), the root commit is marked as grafted.

Googling didn't lead to any satisfacting documentation.

It doesn't seem to have anything to do with git grafts, which the similar terminology would imply.
Is it just a flag to signal that this commit actually has more parents and isn't the "real" root commit? Or is there something more special about it?


回答1:


From your link:

It works by letting users record fake ancestry information for commits. This way you can make git pretend the set of parents a commit has is different from what was recorded when the commit was created.

In a shallow clone, your root commit is one that should have parents, but not in your repo. So it seems a good use case for grafting.

In effect:

Def.: Shallow commits do have parents, but not in the shallow repo, and therefore grafts are introduced pretending that these commits have no parents.



来源:https://stackoverflow.com/questions/27296188/what-exactly-is-a-grafted-commit-in-a-shallow-clone

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