3-add-file.txt 997 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. Adding a file
  2. =============
  3. If you followed well, the next lesson will be straightforward.
  4. We need a new blob::
  5. >>> ham = Blob.from_string("Another\nmultiline\nfile\n")
  6. >>> ham.id
  7. 'a3b5eda0b83eb8fb6e5dce91ecafda9e97269c70'
  8. But the same tree::
  9. >>> tree["ham"] = (0100644, spam.id)
  10. And a new commit::
  11. >>> c3 = Commit()
  12. >>> c3.tree = tree.id
  13. >>> c3.parents = [commit.id]
  14. >>> c3.author = c3.committer = author
  15. >>> c3.commit_time = c3.author_time = int(time())
  16. >>> c3.commit_timezone = c3.author_timezone = tz
  17. >>> c3.encoding = "UTF-8"
  18. >>> c3.message = 'Adding "ham"'
  19. Save it all::
  20. >>> object_store.add_object(spam)
  21. >>> object_store.add_object(tree)
  22. >>> object_store.add_object(c3)
  23. Update the head::
  24. >>> repo.refs['refs/heads/master'] = commit.id
  25. A call to ``git show`` will confirm the addition of "spam".
  26. Remember you can also call ``git checkout -f`` to make it appear.
  27. Well... Adding "spam" was not such a good idea... We'll remove it.