0-introduction.txt 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. Introduction
  2. ============
  3. Git repository format
  4. ---------------------
  5. For a better understanding of Dulwich, we'll start by explaining most of the
  6. Git secrets.
  7. Open the ".git" folder of any Git-managed repository. You'll find folders
  8. like "branches", "hooks"... We're only interested in "objects" here. Open it.
  9. You'll mostly see 2 hex-digits folders. Git identifies content by its SHA-1
  10. digest. The 2 hex-digits plus the 38 hex-digits of files inside these folders
  11. form the 40 characters (or 20 bytes) id of Git objects you'll manage in
  12. Dulwich.
  13. We'll first study the three main objects:
  14. - The Commit;
  15. - The Tree;
  16. - The Blob.
  17. The Commit
  18. ----------
  19. You're used to generate commits using Git. You have set up your name and
  20. e-mail, and you know how to see the history using ``git log``.
  21. A commit file looks like this::
  22. commit <content length><NUL>tree <tree sha>
  23. parent <parent sha>
  24. [parent <parent sha> if several parents from merges]
  25. author <author name> <author e-mail> <timestamp> <timezone>
  26. committer <author name> <author e-mail> <timestamp> <timezone>
  27. <commit message>
  28. But where are the changes you commited? The commit contains a reference to a
  29. tree.
  30. The Tree
  31. --------
  32. A tree is a collection of file information, the state of your working copy at
  33. a given point in time.
  34. A tree file looks like this::
  35. tree <content length><NUL><file mode> <filename><NUL><blob sha>...
  36. And repeats for every file in the tree.
  37. Note that for a unknown reason, the SHA-1 digest is in binary form here.
  38. The file mode is like the octal argument you could give to the ``chmod``
  39. command. Except it is in extended form to tell regular files from
  40. directories and other types.
  41. We now know how our files are referenced but we haven't found their actual
  42. content yet. That's where the reference to a blob comes in.
  43. The Blob
  44. --------
  45. A blob is simply the content of files you are versionning.
  46. A blob file looks like this::
  47. blob <content length><NUL><content>
  48. If you change a single line, another blob will be generated by Git at commit
  49. time. This is how Git can fastly checkout any version in time.
  50. On the opposite, several identical files with different filenames generate
  51. only one blob. That's mostly how renames are so cheap and efficient in Git.
  52. Dulwich Objects
  53. ---------------
  54. Dulwich implements these three objects with an API to easily access the
  55. information you need, while abstracting some more secrets Git is using to
  56. accelerate operations and reduce space.
  57. More About Git formats
  58. ----------------------
  59. These three objects make 90 % of a Git repository. The rest is branch
  60. information and optimizations.
  61. For instance there is an index of the current state of the working copy.
  62. There are also pack files to group several small objects in a single indexed
  63. file.
  64. For a more detailled explanation of object formats and SHA-1 digests, see:
  65. http://www-cs-students.stanford.edu/~blynn/gitmagic/ch08.html
  66. Just note that recent versions of Git compress object files using zlib.