I use Git heavily as a DVCS. The scenario I often come across is when I have manually deleted a whole bunch of files from here and there. It becomes a mess if I have to “git rm
1 |
git add -u |
Issuing the above command automatically adds all changed files to the staging area. Cool, isn’t it?