While git add -u stage all modified tracked files, it doens't remove deleted files.
I tried "git rm -u" but it didn't work. What is the git command for removing deleted tracked files ?
EDIT: with git status I see the deleted files under "Changes not staged for commit:"
I could checkout them and do a git rm on each... but there may be a better solution.