How to commit and push all changes, including deletes?

git

Solution

You will have to do `git add -A` to add all files new files, changes and removed files. Than follow that up with `git commit` and `git push`

Problem

How to commit and push all changes, including additions, editions, and file deletions etc in one command?

Original source

Related problems