mirror of
https://github.com/newren/git-filter-repo.git
synced 2024-11-19 03:25:33 +00:00
7d42c2093c
Signed-off-by: Elijah Newren <newren@gmail.com>
19 lines
431 B
Python
Executable File
19 lines
431 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 my_commit_callback(commit, metadata):
|
|
if commit.branch == b"refs/heads/master":
|
|
commit.branch = b"refs/heads/develop"
|
|
|
|
args = fr.FilteringOptions.default_options()
|
|
args.force = True
|
|
filter = fr.RepoFilter(args, commit_callback = my_commit_callback)
|
|
filter.run()
|