git status
gives me:
a list of added files
a list of modified files
a list of removed files
What I know:
git add -A
--> all 3 lists
git add .
---> all 3 lists
git add --ignore-removal .
---> new and mod only
git add -u
--> mod and deleted
Question:
git add -??
--> new only
git add -??
--> deleted only
git add -??
--> new and deleted only