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