On Wednesday 02 of September 2009 22:52:28 Daniel Stenberg wrote: > On Wed, 2 Sep 2009, Kamil Dudka wrote: > >> $ git rm .cvsignore .cvsusers > >> $ git commit .cvsignore .cvsusers > > > > This absolutely correct, though redundant. You don't need to specify > > objects added/removed by git-add/git-rm. This is exactly what is done if > > you run git-commit without parameters. Just a note to save some typing > > :-) > > Right, but that assumes I want to commit all local changes and I often sit > with many unrelated changes in my tree that I don't want to commit so I > tend to limit the scope just to avoid mistakes...
Just for clarification. It depends on definition of "all local changes". It includes only local changes already taken by git-add/git-rm. If you want to commit really *all* local changes, you want to use 'git commit -a'. Note that untracked files are always ignored... Kamil _______________________________________________ libssh2-devel http://cool.haxx.se/cgi-bin/mailman/listinfo/libssh2-devel
