how to add changes to previous commit code example
Example 1: add changes to last commit
git add the_left_out_file
git commit --amend --no-edit
Example 2: git amend
git commit --amend
Example 3: git amend
git commit --amend -m "an updated commit message"
Example 4: add change to last commit
$ (some_branch) git commit --amend