私が書いた小さなスクリプト (washamend) を試すことができます。最初にコミットしてから、このスクリプトを実行してクリーンアップします。そのために amend を使用します。
#!/bin/bash -e
#
# Rewrite the last commit to remove any trailing whitespace
# in the new version of changed lines.
# Then replace space-based indentation with TAB based indentation
# based on TABS at every eight position
#
[[ -z $TRACE ]] || set -x
trap "rm -f $tmpf" 0
tmpf1=$TMP/$$.1.diff
tmpf2=$TMP/$$.2.diff
git show --binary >$tmpf1
perl -p -e 's/^(\+.*?)[ \t]+$/$1/; while(m/^(\+\t*)( {1,7}\t| {8})(.*)/) { $_=$1."\t".$3."\n"; }' <$tmpf1 >$tmpf2
if ! cmp -s $tmpf1 $tmpf2
then
git apply --binary --index -R --whitespace=nowarn $tmpf1
git apply --binary --index $tmpf2
GIT_EDITOR=true git commit --amend
else
echo "No changes"
fi