On 7/21/06, Linus Torvalds <torvalds@xxxxxxxx> wrote:
> After mothballing the repository with git-repack -a -d and git clean > -d -x, is there a convenient one-liner to empty the files out the > working directory? Well, you can do git ls-files -z | xargs -0 rm -f --
That'd be not enough for kernel after it was compiled. Maybe this: find . -maxdepth 1 -not -name .git -not -name . -print0 | xargs -0 rm -rf -- - : send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html