Hi, On Wed, 24 Jan 2007, Pazu wrote: > 2007/1/24, Johannes Schindelin <Johannes.Schindelin@xxxxxx>: > > > How about > > > > git ls-files -z --deleted | git update-index -z --remove --stdin > > Aha. I was trying > > git-ls-files -d | xargs git rm --cached > > but most removed files contains spaces in their names, and that > screwed git-rm up. I've even noticed the -z option on git-ls-files, > but couldn't find one on git-rm, and I completely forgot about > git-update-index. You _can_ use git ls-files -z -d | xargs -0 git rm --cached So, you did not find that option with git-rm, because it is an option to xargs... Ciao, Dscho - To unsubscribe from this list: 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