다음과 같이 하면 diff 시 whitespace 에러가 강조되어 보인다.
git config --global diff.wsErrorHighlight all
다음과 같이 하면 diff 시 whitespace 에러가 강조되어 보인다.
git config --global diff.wsErrorHighlight all
gsed 없는 mac같은 환경에서 파일 내의 trailing space 지우기
find . -name "*.yml" -exec sed -i '' -E 's/[ '$'\t'']+$//' {} \;