Hello.
In article <[EMAIL PROTECTED]> (at Fri, 9 Feb 2007 09:47:27 -0600), Kumar Gala
<[EMAIL PROTECTED]> says:
> > 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
-
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at http://vger.kernel.org/majordomo-info.html