git append changes to last commit code example
Example 1: git add file to last commit
git add the_left_out_file
git commit --amend --no-edit
Example 2: git amend
git commit --amend
git add the_left_out_file
git commit --amend --no-edit
git commit --amend