Как добавить изменения в предыдущий коммит в git

git add .
git commit --amend --no-edit
#The --no-edit flag allows to make an amendment 
#to the commit without changing the commit message.
Avishka Indula