From 3373aab678e64d998b89f302bf180000efe425cb Mon Sep 17 00:00:00 2001 From: Oleg Broytman Date: Wed, 26 Jun 2024 02:31:00 +0300 Subject: [PATCH] Add `filter-branch-all` --- filter-branch-all | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100755 filter-branch-all diff --git a/filter-branch-all b/filter-branch-all new file mode 100755 index 0000000..6a4abb3 --- /dev/null +++ b/filter-branch-all @@ -0,0 +1,7 @@ +#! /bin/sh + +# Just a reminder how to properly run `git filter-branch --all` + +FILTER_BRANCH_SQUELCH_WARNING=1 exec git filter-branch \ + --tag-name-filter cat "$@" -- --branches --tags + -- 2.39.2