So fügen Sie Änderungen zum vorherigen Commit in Git hinzu
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