I would like to have git add -p
allow me to review not only the changes in the modified files, but in the untracked files.
I have found this question but unlike in that case, I do not want to stage all untracked files. I want to be given the option to stage or to not stage the addition of some of the untracked files.
I tried to do git add -p -A
but this only went through all the changes in the modified files, and quit, without showing me the new untracked files.