Added some tools to manipulate source code in bulk

This commit is contained in:
Guilhem Lavaux 2013-03-02 15:26:55 -06:00
parent e9194f5c55
commit b22257b610
3 changed files with 56 additions and 0 deletions

View file

@ -0,0 +1,11 @@
from git import Repo
repo = Repo(".")
assert repo.bare == False
t = repo.tree()
for entry in t.travers():
print entry