latest_change.py 560 B

1234567891011121314151617181920212223
  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("usage: %s filename" % (sys.argv[0], ))
  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("No file %s anywhere in history." % sys.argv[1])
  16. else:
  17. print("%s was last changed by %s at %s (commit %s)" % (
  18. sys.argv[1], c.author, time.ctime(c.author_time), c.id))