mirror of
https://github.com/newren/git-filter-repo.git
synced 2024-11-09 07:10:26 +00:00
e5955f397f
Signed-off-by: Elijah Newren <newren@gmail.com>
17 lines
389 B
Python
Executable File
17 lines
389 B
Python
Executable File
#!/usr/bin/env python3
|
|
|
|
"""
|
|
Please see the
|
|
***** API BACKWARD COMPATIBILITY CAVEAT *****
|
|
near the top of git-filter-repo
|
|
"""
|
|
|
|
import git_filter_repo as fr
|
|
|
|
def handle_tag(tag):
|
|
print("Decipher this: "+''.join(reversed(progress.message)))
|
|
|
|
args = fr.FilteringOptions.parse_args(['--force', '--tag-callback', 'pass'])
|
|
filter = fr.RepoFilter(args, tag_callback = handle_tag)
|
|
filter.run()
|