Are there some differences between git add . and git add -A?
Thanks.
Are there some differences between git add . and git add -A?
Thanks.
 
    
    git add stages all modifications and any new files.
git add -A stages all modifications and any new files, and will also remove any which are no longer in the working tree. (It also spotted renames when I tried it.)
