2
0

diff.py 490 B

12345678910111213141516171819
  1. #!/usr/bin/python
  2. # This trivial script demonstrates how to extract the unified diff for a single
  3. # commit in a local repository.
  4. #
  5. # Example usage:
  6. # python examples/diff.py
  7. from dulwich.repo import Repo
  8. from dulwich.patch import write_tree_diff
  9. import sys
  10. repo_path = "."
  11. commit_id = "a6602654997420bcfd0bee2a0563d9416afe34b4"
  12. r = Repo(repo_path)
  13. commit = r[commit_id]
  14. parent_commit = r[commit.parents[0]]
  15. write_tree_diff(sys.stdout, r.object_store, parent_commit.tree, commit.tree)