2
0

4-remove-file.txt 810 B

123456789101112131415161718192021222324252627282930
  1. Removing a file
  2. ===============
  3. Removing a file just means removing its entry in the tree. The blob won't be
  4. deleted because Git tries to preserve the history of your repository.
  5. It's all pythonic::
  6. >>> del tree["ham"]
  7. >>> c4 = Commit()
  8. >>> c4.tree = tree.id
  9. >>> c4.parents = [commit.id]
  10. >>> c4.author = c4.committer = author
  11. >>> c4.commit_time = c4.author_time = int(time())
  12. >>> c4.commit_timezone = c4.author_timezone = tz
  13. >>> c4.encoding = "UTF-8"
  14. >>> c4.message = 'Removing "ham"'
  15. Here we only have the new tree and the commit to save::
  16. >>> object_store.add_object(spam)
  17. >>> object_store.add_object(tree)
  18. >>> object_store.add_object(c4)
  19. And of course update the head::
  20. >>> repo.refs['refs/heads/master'] = commit.id
  21. If you don't trust me, ask ``git show``. ;-)