0-introduction.txt 3.0 KB

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