diff.py 444 B

12345678910111213141516
  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. from dulwich.repo import Repo
  5. from dulwich.patch import write_tree_diff
  6. import sys
  7. repo_path = "."
  8. commit_id = "a6602654997420bcfd0bee2a0563d9416afe34b4"
  9. r = Repo(repo_path)
  10. commit = r[commit_id]
  11. parent_commit = r[commit.parents[0]]
  12. write_tree_diff(sys.stdout, r.object_store, parent_commit.tree, commit.tree)