2-change-file.txt 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. Changing a File and Commit it
  2. =============================
  3. Now we have a first commit, the next one will show a difference.
  4. As seen in the introduction, it's about making a path in a tree point to a
  5. new blob. The old blob will remain to compute the diff. The tree is altered
  6. and the new commit'task is to point to this new version.
  7. In the following examples, we assume we still have the ``repo`` and ``tree``
  8. object from the previous chapter.
  9. Let's first build the blob::
  10. >>> spam = Blob.from_string("My new file content\n")
  11. >>> spam.id
  12. '16ee2682887a962f854ebd25a61db16ef4efe49f'
  13. An alternative is to alter the previously constructed blob object::
  14. >>> blob.data = "My new file content\n"
  15. >>> blob.id
  16. '16ee2682887a962f854ebd25a61db16ef4efe49f'
  17. In any case, update the blob id known as "spam". You also have the
  18. opportunity of changing its mode::
  19. >>> tree["spam"] = (0100644, spam.id)
  20. Now let's record the change::
  21. >>> c2 = Commit()
  22. >>> c2.tree = tree.id
  23. >>> c2.parents = [commit.id]
  24. >>> c2.author = c2.committer = author
  25. >>> c2.commit_time = c2.author_time = int(time())
  26. >>> c2.commit_timezone = c2.author_timezone = tz
  27. >>> c2.encoding = "UTF-8"
  28. >>> c2.message = 'Changing "spam"'
  29. In this new commit we record the changed tree id, and most important, the
  30. previous commit as the parent. Parents are actually a list because a commit
  31. may happen to have several parents after merging branches.
  32. Remain to record this whole new family::
  33. >>> object_store.add_object(spam)
  34. >>> object_store.add_object(tree)
  35. >>> object_store.add_object(c2)
  36. You can already ask git to introspect this commit using ``git show`` and the
  37. value of ``commit.id`` as an argument. You'll see the difference will the
  38. previous blob recorded as "spam".
  39. You won't see it using git log because the head is still the previous
  40. commit. It's easy to remedy::
  41. >>> repo.refs['refs/heads/master'] = commit.id
  42. Now all git tools will work as expected. Though don't forget that Dulwich is
  43. still open!