On Sun, Aug 05, 2007 at 02:11:24PM +0200, Johan Herland wrote: > $ hg addremove --help > hg addremove [OPTION]... [FILE]... > > add all new files, delete all missing files > > Add all new files and remove all missing files from the repository. > > New files are ignored if they match any of the patterns in .hgignore. As > with add, these changes take effect at the next commit. > > Adding a git-addremove command should not be much work, and it would be a > lot friendlier to people whose workflow is more aligned with #2 than #1. Not much work at alll: # git config --system --add alias.addremove "git add . ; git add -u" :-) (And the performance problem with git add . is fixed in 1.5.3-rc4, right?) - Ted - 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