Hello.
In article [ref] (at Fri, 9 Feb 2007 09:47:27 -0600), Kumar Gala [off-list ref] says:
quoted
to fix trivial whitespace errors:
- convert leading sequences of whitespace with tab(s).
- remove whitespace at the end of line.
under net.
Tree is on top of current net-2.6 tree.
Do you have a script that did this?
----->8-----
#!/bin/sh
TEMP=$(mktemp -t spacecheck.XXXXXX)
unexpand $1 | sed -e 's/[[:space:]][[:space:]]*$//' > ${TEMP}
cat ${TEMP} > $1
rm ${TEMP}
----->8-----
Then, "git-reset" and "git-commit".
--yoshfuji