On Wed, Jun 13, 2007 at 06:22:23PM +0200, David Kastrup wrote: > git-add . > git-commit -a > > seemingly overlooks deletions. It shouldn't. Try this: mkdir repo && cd repo git init echo foo >foo git add . git commit -m initial rm foo echo bar >bar git add . git commit -a 'bar' is scheduled for addition, and 'foo' is scheduled for deletion. Have you perhaps removed a file, but it's still in the working directory, and so picked up by your git-add? Can you give us a test case? > What am I overlooking? This should be simple, shouldn't it? Yes, it should. :) -Peff - 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