Skip to content

Commit

Permalink
Merge branch vp/support-git-2.43
Browse files Browse the repository at this point in the history
Signed-off-by: Elijah Newren <[email protected]>
  • Loading branch information
newren committed Jun 15, 2024
2 parents 4bc9022 + 7c5be8e commit 65c5863
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions git-filter-repo
Original file line number Diff line number Diff line change
Expand Up @@ -2067,13 +2067,13 @@ EXAMPLES
if b'--anonymize-map' not in output: # pragma: no cover
global date_format_permissive
date_format_permissive = False
if b'--mark-tags' not in output: # pragma: no cover
if not any(x in output for x in [b'--mark-tags',b'--[no-]mark-tags']): # pragma: no cover
global write_marks
write_marks = False
if args.state_branch:
# We need a version of git-fast-export with --mark-tags
raise SystemExit(_("Error: need git >= 2.24.0"))
if b'--reencode' not in output: # pragma: no cover
if not any(x in output for x in [b'--reencode', b'--[no-]reencode']): # pragma: no cover
if args.preserve_commit_encoding:
# We need a version of git-fast-export with --reencode
raise SystemExit(_("Error: need git >= 2.23.0"))
Expand Down

0 comments on commit 65c5863

Please sign in to comment.