*For Git version 2.x*
# Summary:
* ```git add -A``` - stages All
* ```git add .``` - stages new and modified, without deleted
* ```git add -u``` - stages modified and deleted, without new
*Reference:* [StackOverflow](https://stackoverflow.com/questions/572549/difference-between-git-add-a-and-git-add)