How to commit and push all changes, including additions, editions, and file deletions etc in one command?
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
git commit
git push