From f7555918c8180c281c91caec2cb5f7990e1719bb Mon Sep 17 00:00:00 2001 From: Mike Frysinger Date: Thu, 4 Mar 2021 23:02:31 -0500 Subject: [PATCH] git-rewrite-authors: silence rewrite warning+delay --- .bin/git-rewrite-authors | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.bin/git-rewrite-authors b/.bin/git-rewrite-authors index 6017008..2b8c398 100755 --- a/.bin/git-rewrite-authors +++ b/.bin/git-rewrite-authors @@ -29,7 +29,8 @@ if [ ! -e "${author_file}" ] ; then echo "error: could not find ${author_file}" exit 1 fi -git filter-branch \ +FILTER_BRANCH_SQUELCH_WARNING=1 \ +exec git filter-branch \ --env-filter ". '${tmp}';"' \ eval "$(decode "${GIT_AUTHOR_NAME}" AUTHOR)"; \ eval "$(decode "${GIT_COMMITTER_NAME}" COMMITTER)"; \ -- 2.39.2