mirror of
https://bitbucket.org/cosmicvoids/vide_public.git
synced 2025-07-04 15:21:11 +00:00
Added some tools to manipulate source code in bulk
This commit is contained in:
parent
e9194f5c55
commit
b22257b610
3 changed files with 56 additions and 0 deletions
11
build_tools/gather_sources.py
Normal file
11
build_tools/gather_sources.py
Normal 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
|
Loading…
Add table
Add a link
Reference in a new issue