As indicated in the documentation (and the answer to this question):
git -u
: adds modifications and removals to the indexgit -A
: adds modifications, removals and additions to the index
Is there a 1-line git command that only adds file modifications, and not additions/deletions?
I want an easy way to add all of my edits, but don't want this action to add/remove files by default (I'll do that explicitly).