def get_tracked_files()

in scripts/internal/update_example_tables.py [0:0]


def get_tracked_files():
    result = subprocess.run(["git", "ls-files"], capture_output=True, text=True)
    return set(result.stdout.splitlines())