5-rename-file.txt 996 B

123456789101112131415161718192021222324252627282930313233
  1. Renaming a file
  2. ===============
  3. Remember you learned that the file name and content are distinct. So renaming
  4. a file is just about associating a blob id to a new name. We won't store more
  5. content, and the operation will be painless.
  6. Let's transfer the blob id from the old name to the new one::
  7. >>> tree["eggs"] = tree["spam"]
  8. >>> del tree["spam"]
  9. As usual, we need a commit to store the new tree id::
  10. >>> c5 = Commit()
  11. >>> c5.tree = tree.id
  12. >>> c5.parents = [commit.id]
  13. >>> c5.author = c5.committer = author
  14. >>> c5.commit_time = c5.author_time = int(time())
  15. >>> c5.commit_timezone = c5.author_timezone = tz
  16. >>> c5.encoding = "UTF-8"
  17. >>> c5.message = 'Rename "spam" to "eggs"'
  18. As for a deletion, we only have a tree and a commit to save::
  19. >>> object_store.add_object(tree)
  20. >>> object_store.add_object(c5)
  21. Remains to make the head bleeding-edge::
  22. >>> repo.refs['refs/heads/master'] = commit.id
  23. As a last exercise, see how ``git show`` illustrates it.