When trying to add all of the files I deleted without using
git rm
I found the command
git add -u
Imagine my consternation when it did not work as advertised.
Instead, I got the following warning.
warning: The behavior of 'git add --update (or -u)' with no path argument from a
subdirectory of the tree will change in Git 2.0 and should not be used anymore.
To add content for the whole tree, run:
git add --update :/
(or git add -u :/)
To restrict the command to the current directory, run:
git add --update .
(or git add -u .)
Where can I find documentation on the change from git add -u to git add --update :/ ?
And no, apparently the :/ is not a frowney-face. It is an actual command.