SyntaxFix
Write A Post
Hire A Developer
Questions
You're probably looking for -A:
git add -A
this is similar to git add -u, but also adds new files. This is roughly the equivalent of hg's addremove command (although the move detection is automatic).
addremove