latest_change.py 548 B

12345678910111213141516171819202122232425
  1. #!/usr/bin/python
  2. # Example printing the last author of a specified file
  3. import sys
  4. import time
  5. from dulwich.repo import Repo
  6. if len(sys.argv) < 2:
  7. print(f"usage: {sys.argv[0]} filename")
  8. sys.exit(1)
  9. r = Repo(".")
  10. path = sys.argv[1].encode("utf-8")
  11. w = r.get_walker(paths=[path], max_entries=1)
  12. try:
  13. c = next(iter(w)).commit
  14. except StopIteration:
  15. print(f"No file {sys.argv[1]} anywhere in history.")
  16. else:
  17. print(
  18. f"{sys.argv[1]} was last changed by {c.author} at {time.ctime(c.author_time)} (commit {c.id})"
  19. )