Matthias Urlichs wrote: > Hi, Brandon Philips wrote: > > >>- find * | xargs cg-add >>+ find * ! -type d | xargs cg-add > > > Actually, (almost) every use of "find | xargs" which is not a subset of > "find -print0 | xargs -0r" is a bug. > > So please don't do that. Special files aren't liked by git either, thus: > > find * -type f -print0 | xargs -0r cg-add > But it can handle symlinks: find * -type f -o -type l -print0 | xargs -0r cg-add -- Brian Gerst - To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.htmlReceived on Tue May 10 15:17:21 2005
This archive was generated by hypermail 2.1.8 : 2005-05-10 15:17:21 EST