vide_public/build_tools/gather_sources.py
2013-03-02 15:26:55 -06:00

11 lines
125 B
Python

from git import Repo
repo = Repo(".")
assert repo.bare == False
t = repo.tree()
for entry in t.travers():
print entry