3
私がコミットされているテキストファイルに次のスクリプトを実行します:Subversionにコミットするときにテキストファイルを変更できますか?
# Send the commands H and w to ed
# ed will append newline if the file does not end in one
printf "%s\n" H w | ed -s $1
# Strip trailing whitespace
sed -i 's/[ \t]*$//g' $1
# Convert tabs to 4 spaces
sed -i -r "s/\t/ /g" $1
私はSubversionが開始コミットとプリコミットフックを持っていますが、私は私が処理できる方法に関するドキュメントを追跡することはできません参照上記のスクリプトを含むテキストファイル。