mirror of
https://bitbucket.org/cosmicvoids/vide_public.git
synced 2025-07-04 15:21:11 +00:00
11 lines
125 B
Python
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
|