git overwrite last commit code example
Example 1: add changes to last commit
git add the_left_out_file
git commit --amend --no-edit
Example 2: add change to last commit
$ (some_branch) git commit --amend
git add the_left_out_file
git commit --amend --no-edit
$ (some_branch) git commit --amend