From: Oleg Broytman Date: Tue, 25 Jun 2024 23:31:00 +0000 (+0300) Subject: Add `filter-branch-all` X-Git-Url: https://git.phdru.name/?a=commitdiff_plain;h=3373aab678e64d998b89f302bf180000efe425cb;p=git-scripts.git Add `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 +