10
0
mirror of https://github.com/LCPQ/QUESTDB_website.git synced 2024-07-03 09:56:08 +02:00
QUESTDB_website/tools/metarecover.py
2021-03-29 18:11:33 +02:00

25 lines
789 B
Python
Executable File

#!/usr/bin/env python3
from git import Repo,Git
import io
r=Repo(path=".")
l=[item for item in r.index.diff("HEAD") if item.a_path.endswith(".dat") and item.change_type=="M"]
for i in l:
print(i.a_path)
g=Git(Repo.git_dir)
with io.StringIO(g.execute(["git" ,"--no-pager", "show", f"HEAD~1:{i.a_path}"])) as old:
with open(i.a_path,mode="r+") as new:
with io.StringIO(new.read()) as copy:
new.seek(0)
line=old.readline()
while line and line.startswith("#"):
new.write(line)
line=old.readline()
line=copy.readline()
end=False
while line:
if not end and not line.startswith("#"):
end=True
if end:
new.write(line)
line=copy.readline()
new.truncate()